Shiny R - removing/editing box borders -
very simple question (i hope!)
i'm putting shinydashboard , i'm trying edit out grey border-lines run-around shiny boxes (see pic below - underneath x axis label), not had luck of yet.
how can edit the border-frame of these boxes?
will require css or there short-hand code remove borders?
many thanks.
css. try this:
tags$head(tags$style(html('.box{-webkit-box-shadow: none; -moz-box-shadow: none;box-shadow: none;}'))) 
Comments
Post a Comment