Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1363893

    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

    #1363930

    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

    #1363943

    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

    #1363953

    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

    #1363959
    This reply has been marked as private.
    #1363975

    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

    #1364002

    Good morning,
    thank you, now it`s perfect :):):)

    Have a nice day,
    rixi

    #1364014

    Hi,

    Great, I’m glad that you got it working. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.