Tagged: x
-
AuthorPosts
-
July 25, 2016 at 11:06 pm #1102886
Hello,
My site is at http://abundantearth.net.au/
I am just starting this site and would like to remove the background colour to the nav bar. I have added this css to my child theme stylesheet:
body .x-navbar {
background-color: transparent !important;
}It didn’t work. Can you tell me what I’m doing wrong?
Many thanks and kind regards,
Jenny
July 25, 2016 at 11:07 pm #1102887This reply has been marked as private.July 26, 2016 at 2:59 am #1103084Hi there,
It seems you have added this too :
.x-navbar, .x-navbar .sub-menu { background-color: hsl(0, 0%, 100%) !important; }
Let’s remove this and try
.x-navbar { background: transparent !important; }
Hope this helps.
July 26, 2016 at 6:25 am #1103261Hello,
I just realised I didn’t have the child theme active so I’ve done this and added
.x-navbar {
background: transparent !important;
}But I can’t find where this is to remove it –
.x-navbar, .x-navbar .sub-menu {
background-color: hsl(0, 0%, 100%) !important;
}Many thanks and kind regards,
Jenny.
July 26, 2016 at 8:01 am #1103367Hi Jenny,
You can try this code instead.
body .x-navbar, body .x-navbar .sub-menu { background: transparent !important; }
Hope that helps.
July 26, 2016 at 6:33 pm #1104267Hello there,
Sorry but this didn’t work. If you take a look you’ll see the effect. What I want is to remove the dark background behind the actual nav bar menu that current has HOME and ABOUT.
Many thanks and kind regards,
Jenny
July 27, 2016 at 1:44 am #1104687Hi Jenny,
Please try to add this code in the customizer:
.ubermenu-responsive-default.ubermenu { border: 0; background: transparent; }
Hope this helps.
August 9, 2016 at 8:35 pm #1124789Thanks so much, all sorted. Excellent support.
Kind regards,
Jenny
August 10, 2016 at 1:53 am #1125100You’re more than welcome, glad we could help.
Cheers!
-
AuthorPosts