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

    I have tried everything that I could think of, but I cannot figure out how to remove the white space between “Cities” (In the menu) and the right edge of the website. Any help is appreciated!

    Thanks!

    #702773

    Hi Eagles1227,

    Please try the following in Quick CSS under Enfold–>General Styling:

    .av_header_stretch .container {
        width: 100% !important;
    }

    Best regards,
    Rikard

    #703460

    Thanks so much! That worked, except now I need space between the word and the right side of the page. When I add a “padding,” it extends the orange line all the way to the right instead of just under the text – I’m doing something wrong! Also, how do I just change the first level navigation font of “Cities” to white?

    Thanks!

    #703635

    Hi,

    Please try the following as well:

    #menu-item-116 {
        padding-right: 20px !important;
    }
    
    
    #menu-item-116 .avia-menu-text {
        color: white !important;
    }

    Best regards,
    Rikard

    #703812

    Yes, that works. However, when changing the text to white, it also changes the text in the mega menu to white. I tried first level and all, but I keep striking out! Thoughts?

    Goal: Trying to change the first level, menu item 116 text to white.

    Thanks again!

    • This reply was modified 8 years, 1 month ago by Eagles1227.
    #704132

    Hi,

    Ok, please try this instead:

    #menu-item-116 .avia-menu-text {
        color: white;
    }
    
    #menu-item-116 .sub-menu .avia-menu-text {
        color:#fcfcfc;
    }

    Best regards,
    Rikard

    #704585

    Ahh, I thought of that as well but it did not work! This is frustrating – something so easy and I am overlooking it somehow! Any other suggestions?

    #704730

    Hi,

    I’ve actually never used the CSS :not selector before but maybe this could work?

    #menu-item-116 .avia-menu-text:not(.sub-menu .avia-menu-text) {
        color: white;
    }

    Or this?

    #menu-item-116 .avia-menu-text:not(.sub-menu) {
        color: white;
    }

    http://www.w3schools.com/cssref/sel_not.asp

    Best regards,
    Rikard

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