Home > database >  Place text at the very top shinydashboard sidebar
Place text at the very top shinydashboard sidebar

Time:10-06

In the shiny app below I would like to put the text that is inside the sidebar a little bit higher than it is in order to be in the same line with the tab panel tabs. The header is disabled and the tabsetPabel() should not be moved lower instead.

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

ui <- dashboardPage(
  dashboardHeader(disable = T),
  dashboardSidebar(
    h4("titletitletilte")
  ),
  dashboardBody(
    tabsetPanel(
      id="inTabset",
      tabPanel("show",
      ),
      tabPanel("Hide")
    )
  )
)

server <- function(input, output) { }

shinyApp(ui, server)

CodePudding user response:

Are you looking for something like this?

h4(style = "position: absolute;top: 15px;", "titletitletilte")
  • Related