Change Menu background color
-
I’ve tried looking up several different forums for the raindrops theme in specific to changing the background menu color.
I would like to change it a white background, it’s underneath my header picture.
my site is: wwww.motivationbymallory.com
Thank you!
-
In style.css
you added this code#access { background: FFFFFF; }change that to
#access { background: #FFFFFF; }In your style.css you currently have #access set to background:FFFFFF
You need to include # before FFFFFF.
Should be #access {background:#FFFFFF}
If you want more room for menu
add
#access { background: #FFFFFF; padding: 10px 0; }For some reason, it’s still not working.
Where did you add the code?
It seems you didn’t.
@motivationbymallory
you can mark this as resolved if it works..I added the code on the last line of the style.css page.
I’d suggest using a custom CSS plugin – otherwise all of your changes will be lost when the theme is updated.
The menu background IS white BTW. Try clearing your browser cache.
ok, I’m somewhat new to CSS and wordpress, I’m mostly familiar with HTML. Where can I access a CSS plugin? I apologize for my amateur questions.
Thank you for the recommendations everyone! I cleared my cache and now I see it! Thank you.
Any of these will do:
http://wordpress.org/plugins/search.php?q=custom+css
If you’ve made change to other files, you may want to consider moving them to a child theme so that updates don’t erase all your work.
Hi motivationbymallory
Please try below CSS
Add to style.css( child theme good for your customize ) last line
#doc #access .children li, #doc #access a, #doc #access, #doc2 #access .children li, #doc2 #access a, #doc2 #access, #doc3 #access .children li, #doc3 #access a, #doc3 #access, #doc4 #access .children li, #doc4 #access a, #doc4 #access{ background:#fff; color:#000; }Thank you.
thank you!
The topic ‘Change Menu background color’ is closed to new replies.
