hi..i'm trying to get background image in my dashboard.. the following code i have included in ui
ui<-dashboardPage(
dashboardHeader(title = "Hello"),
dashboardBody(
tags$head(
tags$link(rel = "stylesheet", type = "text/css", href = "style.css")
)
)
)
and in my css
.main-header .logo {
font-family: "Georgia", Times, "Times New Roman", serif;
font-weight: bold;
font-size: 24px;
}
body {
background-image: url("?C:\Users\InESS-SYS-11\Pictures\hi.jpg");
}
but there is no changes in my dashboard. can anyone help me thank you