I want to make the text in an info box smaller than the text on the rest of the dashboard. Here is the dashboardBody part of the code:
dashboardBody(fluidRow(
box(
title = "Box 1",
width = 12, solidHeader = TRUE,
status = "primary",
uiOutput("myUiOutput")
),
box(
title = "Box 2",
width = 12,
solidHeader = TRUE,
status = "warning",
plotOutput("myPlot")
),
infoBox(title = "my info box title",
value = "my info box message",
subtitle = NULL,
icon = shiny::icon("copyright"), color = "black", width = 12,
href = NULL, fill = FALSE)
)) #<-end dashboardBody
I tried adding this tag before the Box 1 code, but it did not work:
tags$head(tags$style(HTML('
.info-box .logo {
font-family: "Georgia", Times, "Times New Roman", serif;
font-weight: bold;
font-size: 8px;
}
'))),