I would like to use tabs like on your feature page http://kriesi.at/themes/enfold/features/#tab-id-12 !
I learned how, but i would like to give a separate color to each tab with icon ..How do i do that? :)
Thnx
Hi Karic!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.js_active .tab { border-color: red; }
If that does not help, please post a screenshot and show the changes you would like to make
Cheers!
Yigit
I would like for every tab to have its own color..! :)
http://awesomescreenshot.com/0b04r7xu48
Hi!
Add this to a codeblock element in the page.
<style type = "text/css">
.tab_titles > div:nth-child(2) {
background: red;
}
.tab_titles > div:nth-child(3) {
background: green;
}
</style>
Best regards,
Elliott