I would like to know how can I adjust the height of dashboardheader
in shinydashboard
dashboardHeader(
title = loadingLogo('http://company.fr/','logo.jpg','buffpowa.gif'),
titleWidth = 600
)
I can modify the width
but the logo is too large for the header. I want the header to have enough height to display the full logo.
Thanks
You need to set the height
of the following elements:.main-header
and .main-header .logo
. Also please note that it only works if they are set inside tags$li
within the dropdown
class.
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(
# Set height of dashboardHeader
tags$li(class = "dropdown",
tags$style(".main-header {max-height: 200px}"),
tags$style(".main-header .logo {height: 200px}")
),
# Use image in title
title = tags$a(href='http://company.fr/',
tags$img(src='logo.jpg'))
),
dashboardSidebar(
# Adjust the sidebar
tags$style(".left-side, .main-sidebar {padding-top: 200px}")
),
dashboardBody()
)
server <- function(input, output){}
shinyApp(ui, server)
Using a 200x200 px android logo:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With