Changing Primary Navigation Menu Background Color

Hello, I have been trying for 2 days to change the primary menu background color from the light blue/gray it is to something different. Can someone give me simple instructions or code to do this? I know how to create a child theme but am not an experienced coder. I read something about the latest update messing up child themes? Thanks in advance.

Hi alyce, In your child theme's style.css please add following line at bottom.

#rtp-primary-menu { background-color: #DDD; }

( Replace #DDD with your color choice code ).

if you want to change menu item color then

#rtp-nav-menu a { background-color: #333 } ( Replace #333 with your color choice code ).

for hover effect on menu items #rtp-nav-menu a:hover { background-color: #888 } ( Replace #888 with your color choice code ).

Hope this will help you, let us know if you need further assistance. Regards Ankit

Thanks Ankit,

I still can't get some things right, but I am using Instant Wordpress to set up a new website. I will check back when it is up and running. Appreciate the help.

Alyce

Hi Alyce, Were you able to get implement the changes?