Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#2078
Robert Kavgić
Participant

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