Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1424834

    Is this possible to do, in some way?

    If possible, I need to style both main menu links and sub menu links. And make sub menu background transparent.

    #1424852

    Hi BenjaminSpeedtsberg,

    It’s possible, you can add this in Enfold > General Styling > Quick CSS:

    #top #header:not(.av_header_transparency) {
        position: absolute;
        padding-top: 15px;
    }
    
    #top :not(.av_header_transparency) .header_bg {
        background-color: transparent;
        opacity: 0;
    }
    
    #top :not(.av_header_transparency) li a .avia-menu-text {
        color: black;
    }

    As for the logo, we can’t change the color of the image but we can add a background color to it:

    #top #header:not(.av_header_transparency) .logo {
        background-color: black;
        border-radius: 10px;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1424878

    Looks great from my end! And if I want to change the color for a specific page, where to out the .page_id_xx?

    Is it possible. to recolor the svg logo maybe like this:

    {
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0);
    }
    #1424954

    The filter css worked for the logo.

    Just need to style the text color specific for the pages.

    And last thing, transparent sub menu.

    #1425009

    Hi Benjamin,

    For specific pages, just replace #top with #top.page-id-xx
    As for transparent submenus, I checked the pages and I think you have already done it.

    Best regards,
    Nikko

    #1425080

    Thanks,

    And yes, I think I figured out the rest.

    #1425185

    Hi Benjamin,

    I’m glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Change menu and sub menu font color specific for each page’ is closed to new replies.