Hello
Is there an easy way to change the background-color of a tab?
Thank you
Hello
Is there an easy way to change the background-color of a tab?
Thank you
Hello
There in an online sample:
dhtmlx.com/docs/products/dht … olors.html
If you need to set it for only one tab - tell us, what skin do you use
Hello
Does not work … i’m using dhx_skyblue.
Do you need to style just one statick tab, or it will be special style for selected tab?
Would be ok for a special tab … i don’t need that the color changes on active / inactive.
Just add the next style:
.dhx_tabbar_row .dhx_tab_element_inactive[tab_id=tab1]{
background: #66CDAA !important;
border: 1px solid #A4BED4;
}
.dhx_tabbar_row .dhx_tab_element_active[tab_id=tab1]{
background: #7FFFD4 !important;
border: 1px solid #A4BED4;
}
.dhx_tab_element[tab_id=tab1] div {
background-image: none !important;
}
Where “tab1” is ID of the tab
Perfect
Thank you
You are welcome!