Forums

Tabs: every tab with its own colour?

RolloMan 29 Jan, 2016
HI there,
is it possible to change the colour of every visible tab?
For example: I have a form with 4 tabs and the color of the tabs should be changing in from light green on left tab to dark green for the right tab.
GreyHead 29 Jan, 2016
Hi RolloMan,

I just experimented and it is possible with CSS like this
#chronoform-container-1 li:nth-child(1) {
  background-color: green;
}
#chronoform-container-1 li:nth-child(2) {
  background-color: blue;
}
. . .
Note that you need to check the id of your parent container which may not be 'chronoform-container-1' and that the color of the active tab is changed and over-writes this so you may need more CSS if you want to change that.

Bob
This topic is locked and no more replies can be posted.