We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Great thanks for you. The shiny dashboard is so greate. I want to change the title color of the titlex It not works bellow
library(shinydashboard) library(shiny) library(shinyjs) header <- dashboardHeader(title='want to be red') |> tagAppendAttributes(id='nn',.cssSelector = 'span') side <- dashboardSidebar( ) body <- dashboardBody( useShinyjs() ) ui <- dashboardPage(header,side,body,title = 'nhanesR') server <- function(input, output, session){ runjs('$("#nn > span").css("color", "red")') } shinyApp(ui,server)
The text was updated successfully, but these errors were encountered:
No need for shinyjs
shinyjs
library(shinydashboard) library(shiny) ui <- dashboardPage(dashboardHeader(title = div('want to be red', style = "color: red;")), dashboardSidebar(), dashboardBody(), title = 'nhanesR') server <- function(input, output, session) {} shinyApp(ui, server)
Sorry, something went wrong.
No branches or pull requests
Great thanks for you. The shiny dashboard is so greate.
I want to change the title color of the titlex
It not works bellow
The text was updated successfully, but these errors were encountered: