firmo23
firmo23

Reputation: 8404

Delete title section from shinydashboard box

How can someone delete the title section in shiny box? Or reduce its height to 0? No I dont want it NULL or =""

library(shiny)
library(plotly)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(),
  dashboardSidebar(),
  dashboardBody(
    fluidRow(
      box(width=12)),
    fluidRow(
      box(title="something"),
      box())
  )
)

server <- function(input, output) { 

}

shinyApp(ui, server)

Upvotes: 0

Views: 429

Answers (1)

syholis
syholis

Reputation: 36

For anyone who comes across this question, you can refer to this solution from another post answered by 'bobbel`:

solution found on another post

The `css' solution provided works for me.

Upvotes: 2

Related Questions