Okay
  Public Ticket #3079094
Secondary Header Color
Closed

Comments

  •  9
    Shane started the conversation

    Hi guys, this seems like it should be such a simple task, but I tried changing the color scheme to the secondary header and nothing is happening.

    Please advise, Shane :)

  •  1,877
    Judith replied

    Hello Shane,

    Thanks for keeping in touch.

    I am not sure why the colors are not taking effect from your end. Let us know the color you are trying to change the secondary header into so that we can provide a CSS as an alternative.

    Thanks.

  •  9
    Shane replied

    Secondary Header Background #386987

    Secondary Header Font #ffffff

    Secondary Header Font Hover #9ad5a9

  •  1,877
    Judith replied

    Hello Shane,

    Please try this css:

    #header-secondary-outer {
        background-color: #386987;
    } #header-secondary-outer .nectar-center-text a {
        color: #ffffff;
    }

    Thanks.

  •  9
    Shane replied

    Sweet.. that works. However, is there any additional code you could give it to change the bar color or at least the text color on hover? Preferably the bar itself rather than the text.

  •  8,839
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #header-secondary-outer .nectar-center-text a:hover {
        color: #9ad5a9 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  1,877
    Judith replied

    Hello Shane,

    We are only able to provide for the text on hover. Please try this css:

    #header-secondary-outer .nectar-center-text a::hover {
        color: red;
    }

    Thanks.

  •  9
    Shane replied

    Doesn't seem to be working. Any other suggestions?spacer.gif

    #header-secondary-outer {
        background-color: #386987;
    }
    #header-secondary-outer .nectar-center-text a {
        color: #ffffff;
    }
    #header-secondary-outer .nectar-center-text a::hover {
        color: red;
    }

  •  8,839
    Tahir replied

    Hey Again,

    Use the Below Revised CSS.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #header-secondary-outer {
        background-color: #386987 !important;
    }
    #header-secondary-outer .nectar-center-text a {
        color: #ffffff !important;
    }
    #header-secondary-outer .nectar-center-text a:hover {
        color: red !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  9
    Shane replied

    Works perfect, thank you :)