How to change hover menu color in DW Magz templates
1 Answers
At the moment, we have provided some color for the theme, you can change color in the following code:
.style-blue:hover>a,
.style-blue:active>a {
color: #...;
}
.style-red:hover>a,
.style-red:active>a {
color: #...;
}
.style-green:hover>a,
.style-green:active>a {
color: #...;
}
.style-pink:hover>a,
.style-pink:active>a {
color: #...;
}
.style-purple:hover>a,
.style-purple:active>a {
color: #...;
}
.style-orange:hover>a,
.style-orange:active>a {
color: #...;
}
If you want to add the new color, you can insert the color class in the menu item in the Dashboard > Menus then change the color name in the CSS code that I have provided.
Please login or Register to submit your answer