Hello,
I would like to customize the header by putting a border-bottom 1px solid black if possible. I would also like to do something similar to the footer and sidebar controller. Does anyone have any suggestions on this?
Thanks,
Brandon
Solved! Go to Solution.
Brandon,
In the [install dir]\server\apps\[app#]\themes\TabTheme\common.css add these rules (lines 3 - 11):
@import url("panels/TabPanel/style.css");
.jimu-widget-sidebar-controller{
border-right: 1px solid #000000;
}
.jimu-widget-header {
border-bottom: 1px solid #000000;
}
.jimu-widget-footer {
border-top: 1px solid #000000;
}
Brandon,
In the [install dir]\server\apps\[app#]\themes\TabTheme\common.css add these rules (lines 3 - 11):
@import url("panels/TabPanel/style.css");
.jimu-widget-sidebar-controller{
border-right: 1px solid #000000;
}
.jimu-widget-header {
border-bottom: 1px solid #000000;
}
.jimu-widget-footer {
border-top: 1px solid #000000;
}
Thanks Robert. This worked perfectly.
-Brandon