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..
In addition, why does the custom color selection in “Color Section” not update/work?
nm, had some custom CSS, changed section color theme and fixed that. Still need help with first question..
Hi!
Try targeting the direct menu links, with something like this:
#avia-menu li > a {
background: red;
}
Regards,
Josue
Thanks Josue, I’ll give that a try.
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
Please post a link to your site.
Cheers!
Josue
Okay, found the fix.
Here is the code:
#header_main_alternate {
background-color: red;}
Thought I tried this, but now it’s working.
#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.
Glad you found a solution :)
Regards,
Josue