firmo23
firmo23

Reputation: 8404

Add subtitle in shinydashboard title section

Is it possible to add a subtitle with smaller font size in shinydashboard title section under the main title?

## app.R ##
library(shiny)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(title="Dashboard"),
  dashboardSidebar(),
  dashboardBody()
)

server <- function(input, output) { }

shinyApp(ui, server)

Upvotes: 2

Views: 2076

Answers (1)

Johan Rosa
Johan Rosa

Reputation: 3152

Something like this would work:

## app.R ##
library(shiny)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(
    title= div(h3('Títutlo', style="margin: 0;"), h4('subtitulo', style="margin: 0;"))
    ),
  dashboardSidebar(),
  dashboardBody()
)

server <- function(input, output) { }

shinyApp(ui, server)

enter image description here

Upvotes: 4

Related Questions