Hi,
how can i change the font color by the tabs – active in #000000 and hover in #f7f2ee – color?
Thanks for your help :)
Many greetings rixi
Hey rixi,
Thank you for the inquiry.
You can use this css code to adjust the background color of the tab on hover and when it is active.
#top .main_color .tabcontainer .tab:hover {
background-color: #f7f2ee;
}
#top .main_color .tabcontainer .tab.active_tab {
background-color: #000000;
}
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
Ismael
Hello Ismael,
i wanted to change the color of the font by active and hover, not the background. Can you send me that code?
thanks a lot :)
Rixi
Hi,
Please try this CSS instead:
#top .main_color .tabcontainer .active_tab {
color: #fff;
}
#top .main_color .tabcontainer .tab:hover {
color: #f7f2ee;
}
Best regards,
Rikard
Hi,
This will change the background of the active tab to red, and the text will be white:
#top .main_color .tabcontainer .tab.active_tab {
color: #fff;
background: red;
}
Best regards,
Rikard
Good morning,
thank you, now it`s perfect :):):)
Have a nice day,
rixi