Anonymous User 16453565
(@anonymized-16453565)
Hello, @jomul04
If you want to change the background color of the menu then add below css code into Appearance → Customize → Additional CSS.
.main-navigation {
background-color: #000; /* Add your desire color. */
}
And if you want to change the color of menu link then add below css code into Appearance → Customize → Additional CSS.
.main-navigation a {
color: #000; /* Add your desire color. */
}
Let me know if that does it.
Thank you.
Thank you @snehalb890 that has worked. Can you please advise how I can change the colour of the drop down menu too? Thanks
@snehalb890 I would also like to change the link colour if possible?
Anonymous User 16453565
(@anonymized-16453565)
Hello, @jomul04
To change the menu link color add below css code
.main-navigation a {
color: #f37a5b; /* Add your desire color. */
}
To change the dropdown menu background color add below css code
.main-navigation ul ul {
background-color: #f37a5b !important;
}
hamburger menu background color for mobile view.
button.menu-toggle {
background-color: #f37a5b;
}
Thank You.
Thank you @snehalb890 this worked perfectly