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

    Hello.

    I’m looking to change some of the elements in the transparent menu. I seared the documentation but couldn’t find a solution can you help?

    Here is what I’m trying to do. The menu text isn’t style how I would like it to be when the header is at the top of my website. How do change the following elements just when the header is transparent at the top – not when scrolled.

    • The page links seems semi transparent in the menu. How do i make this text non semi transparent?
    • I need The button white with blue text only when at the top. Scrolling these the default colors are fine.
    • I need The social icons to be white. Scrolling these the default colors are fine.

    #987932

    Hey asapevictions,

    You need to set a different color for the menu links for the header transparency here in Theme options > Header
    Image 2018-07-20 at 18.39.09.png

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {
        background-color: #344559;
        color: #ffffff;
        border-color: #344559;
    }
    
    #top #wrap_all .header_color.av_header_transparency .av-menu-button-colored > a .avia-menu-text {
        background-color: #e3e5e6;
        color: #332c2c;
        border-color: #e5e6ea;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #988876

    Wow, what great support! Thanks. One thing though – How do I change the text color of the button when transparent? Right now it is white and I need it blue both on hover and static.

    #989038

    Hi,

    Please try this CSS instead:

    #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {
        background-color: #344559;
        color: blue;
        border-color: #344559;
    }
    
    #top #wrap_all .header_color.av_header_transparency .av-menu-button-colored > a .avia-menu-text {
        background-color: #e3e5e6;
        color: blue;
        border-color: #e5e6ea;
    }

    Best regards,
    Rikard

    #989353

    Thanks for that new code. I had to add an import tag to the text color to stick.

    #top #wrap_all .header_color.av_header_transparency .av-menu-button-colored > a .avia-menu-text {
        background-color: #ffffff;
        color: #35455A!important;
        border-color: #ffffff;
    }
    #989509

    Hi,

    Great, glad you got it working and thanks for sharing your code. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #989886

    close

    #989992

    Hi,

    Glad this is sorted!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Vinay

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Styling for transparent menu (at top)’ is closed to new replies.