Private: Home › Forums › WordPress Themes › Metropolis – Clean Multipurpose WordPress Theme › Text and menu button hover color change › Reply To: Text and menu button hover color change
Hello,
Please copy and paste the following CSS codes into “WP-admin -> Appearance -> Theme options -> Appearance – Custom styles” box:
To change the grey color in copyright section, use this CSS code :
.copyright-container p,
.copyright-container ul li a {
color: #000 !important;
}
To change the content link color, use the following CSS code:
.content a,
.content div a,
.content ul li a {
color: #000 !important;
}
For content link hover color, use the following CSS:
.content a:hover,
.content div a:hover,
.content ul li a:hover {
color: #fff!important;
}
Let me know if it works…
Changing the rollover or static color of the menu buttons so that the hover color is different to the current page color.
Could you please explain me what you want to change on menu buttons? The rollover effect on all the links, or just the rollover effect on the current active link?
Robert