I want to change the color of the menu
-
Good afternoon.
I want to change the color of the menu. Shall I need to wean the programmer and learn CSS . I just want to change the color of the menuThe blog I need help with is: (visible only to logged in users)
-
Hi there,
to change your menu color, you can use this CSS above, but please note that instead #color you need to use a hexadecimal code that represents that color. You can pick color hex codes on http://www.colorpicker.com/ or https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool.
To add this CSS on your theme, please go to Customizer > CSS
/*Changing text link color*/ .main-navigation a, .main-navigation a:visited {color:#color;} /*Changing text color on hover*/ .main-navigation a {color:#color;} /*Changing background color*/ .main-navigation li a{background:#color;} /*Changing background color on hover*/ .main-navigation li a:hover{background:#color;} -
-
-
I’m sorry but I do not understand anything in writing code. The maximum that I can replace the color number in the code. Therefore, I ask you to please send me this text that I could paste in the CSS settings Field
-
-
Try pasting the code Guga provided above into your CSS editor.
Be sure to replace #color with your preferred colour code.
This bit of CSS in your editor:
.main-navigation li a { background-color: red#58595b; }should be:
.main-navigation li a { background-color: #58595b; }OR
.main-navigation li a { background-color: red; }You can’t use both colour names and hexadecimal codes, it has to be one or the other.
Let us know how it goes.
- The topic ‘I want to change the color of the menu’ is closed to new replies.