- This topic has 1 reply, 2 voices, and was last updated 4 years, 2 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support › Forums › Flex Theme › Change menu background color
Tagged: custom .css, menu color
What would be the custom .css to change the background color of the drop down main navigation menu?
Do you recommend creating a custom.css file for changes like this?
Many thanks!
Go to line no 1431 of style.css file and replace
.genesis-nav-menu .sub-menu a {
background-color: #fff;
border: 1px solid #eee;
border-top: none;
display: block;
line-height: 1.7;
padding: 10px 15px 8px;
position: relative;
width: 200px;
word-wrap: break-word;
}
WITH
.genesis-nav-menu .sub-menu a {
background-color: ENTER YOUR BG COLOR HEX CODE;
border: 1px solid #eee;
border-top: none;
display: block;
line-height: 1.7;
padding: 10px 15px 8px;
position: relative;
width: 200px;
word-wrap: break-word;
}