I've made a dashboard with shinydashboard and really like the ease of making a layout with the package! However, I'd like to use one of the themes from the shinythemes package. I'm familiar with the shinydashboard skins, but they aren't nearly as cool or modern as shinythemes. The shinythemes seem to work well with just shiny, but not with shinydashboard.
Anyone know how to get shinythemes to work with shinydashboard?
Thanks very much!
ie: start of dashboard: doesn't work:
ui <- dashboardPage( theme = shinytheme("spacelab"),
dashboardHeader(title = "I want this to look awesome!"),
dashboardSidebar(sidebarMenu(

Unfortunately,
shinydashboardisn't capable of switching to additional Bootstrap-based themes the way you're trying to do above.If you need to apply custom .css within your app, I would do something like the following:
Where
custom.css(or similar) is where you have your overridden UI elements defined.