Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #417010

    Hi,
    How would I go about making my website’s header have a gradient going from light grey (#ebebeb) to white?
    Using the option: General Styling>Logo Area>Background Image> gradient-bottom-light.png has no effect.

    Also, how would I keep the header a solid color at all times instead of going transparent as soon as I scroll down?

    Thanks!

    #417112

    Hey markzarak!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #header_main { 
    background: #ebebeb;
    background: -moz-linear-gradient(top,  #ebebeb 0%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb), color-stop(100%,#ffffff));
    background: -webkit-linear-gradient(top,  #ebebeb 0%,#ffffff 100%);
    background: -o-linear-gradient(top,  #ebebeb 0%,#ffffff 100%);
    background: -ms-linear-gradient(top,  #ebebeb 0%,#ffffff 100%);
    background: linear-gradient(to bottom,  #ebebeb 0%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb', endColorstr='#ffffff',GradientType=0 );
    }

    Cheers!
    Yigit

    #417120

    Thank you for your reply!

    I have two other issues now, the text is white no matter what I try to change it to, how would I get black text? The second issue is the sub menu I have under about us, it’s transparent, any other color would work such as white?

    #417121

    Hey!

    Please go to Enfold theme options > Advanced Styling tab and edit “Main menu links” and “Main Menu sublevel Links”

    Cheers!
    Yigit

    #417125

    No effect!

    #417138

    Hey!

    Please post a temporary admin login here privately so we can look into it.

    Cheers!
    Yigit

    #417144
    This reply has been marked as private.
    #417151

    Hi!

    Please make sure to disable CSS minifying feature on total cache plugin before making styling changes. Then you can enable it. Please review your website now.

    Cheers!
    Yigit

    #417166

    Right, so sorry, just got the plugin an hour ago didn’t realize, I have disabled it for now. I still cannot get the submenu to highlight a different color when the mouse is over it, any ideas? I left the login in case you’d like to try again.

    #417181

    Hi!

    No worries :)
    Advanced Styling should look like this – http://i.imgur.com/EXq25KE.png
    Make sure to add the same element once again and check “Apply only to mouse hover state”

    Best regards,
    Yigit

    #417204

    Perfect, thanks so much!

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Header Gradient’ is closed to new replies.