How can I customized the color of each tab of the navbar
Hi Aeneas,
Here is code for your goals(only for item with name "navInWork" duplicate it to get it work for other items):
pre
html body a[name=navInWork].ui-btn.ui-btn-active {
background: #0f0;
font-weight:bold;
color: red;
}
html body a[name=navInWork].ui-btn {
background: #f00;
font-weight:normal;
}
/pre
Regards.