Changing colors of widget headers

1512
3
Jump to solution
07-08-2016 07:31 AM
GeorgeKatsambas
Occasional Contributor III

Which file do i need to change so that my widget headers color are different? i:e header blue and widget red

Tags (3)
0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

George,

  Add this css rule to your apps theme common.css (i.e. [install dir]\server\apps\[app #]\themes\FoldableTheme\common.css)

.FoldableTheme.default .jimu-on-screen-widget-panel > .jimu-panel-title {

  background-color: rgb(255, 0, 0);

  background-color: rgba(255, 0, 0, 1);

}

View solution in original post

3 Replies
RobertScheitlin__GISP
MVP Emeritus

George,

  This can be done with css changes but I will need to know what theme you are using.

0 Kudos
GeorgeKatsambas
Occasional Contributor III

Robert its the Foldable Theme

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

George,

  Add this css rule to your apps theme common.css (i.e. [install dir]\server\apps\[app #]\themes\FoldableTheme\common.css)

.FoldableTheme.default .jimu-on-screen-widget-panel > .jimu-panel-title {

  background-color: rgb(255, 0, 0);

  background-color: rgba(255, 0, 0, 1);

}