Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #337764

    So, I am trying to change the color of the div container of the menu. From inspecting, I got

    #header_main_alternate .container_wrap {};

    Unfortunately, I am thinking that I must add a new div section to change?

    To make it clear in what I am trying to accomplish:

    So, main logo area background color is different than the menu container (Full Width)

    tried this…

    #header_main_alternate .container_wrap {
    color:red !important;
    background:red !important;
    background-color:red !important;
    }

    Figured one of those would work..

    #337801

    In addition, why does the custom color selection in “Color Section” not update/work?

    #337805

    nm, had some custom CSS, changed section color theme and fixed that. Still need help with first question..

    #337812

    Hi!

    Try targeting the direct menu links, with something like this:

    #avia-menu li > a {
        background: red;
    }

    Regards,
    Josue

    #337829

    Thanks Josue, I’ll give that a try.

    #337832

    Unfortunately that did not work. your code does however work with the !important added to the color, but the color only affects the menu box, not the full width div. Does this make sense?
    Thanks Again

    #337833

    Please post a link to your site.

    Cheers!
    Josue

    • This reply was modified 9 years, 6 months ago by Josue.
    #337838

    Okay, found the fix.

    Here is the code:

    #header_main_alternate {
    background-color: red;}

    Thought I tried this, but now it’s working.

    #337843
    #avia-menu li > a {
        background: red;
    }

    The above code changes the background color of the menu blocks whereas

    #header_main_alternate {
    background-color: red;}

    Changes the background color behind the blocks, the full-width div area.

    Hope this helps.

    #337844

    Glad you found a solution :)

    Regards,
    Josue

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