I have a shiny fluidpage in cerulean theme with two fluidRows one within another. The first fluidRow places an image and the second fluidRow places text below the image. Below is the UI code:
fluidPage(theme = shinytheme("cerulean"),
fluidRow(column(12,align ="center",
div(img(src="test.png", height=200, width=300))),
fluidRow(column(12, align = 'center',
div(style = "font-size: 20px; padding: 0px 0px; margin-top:-2em"),
titlePanel(title = 'Express', windowTitle = 'Express Plots'))
)#closefluidRow
)#closefluidRow
) #closefluidPage
Here, the background color of fluidRows with the image and titlePanel is white and i would need to have a blue (cerulean color) in the background. Could someone hint in achieving this.