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.

#926
Robert Kavgić
Participant

To change the background color of the circle to the white and the tick to the red color, use the following css code:

.icon-ok-sign {
    background: #fff !important;
}
.icon-ok-sign:before {
    color: red;
}

You can modify the icons color on the specific page by finding out the body’s class. For example, to change the icon colors only on the “Visie” page, use the following code:

body.page-id-562 .icon-ok-sign {
    background: #fff !important;
}
body.page-id-562 .icon-ok-sign:before {
    color: red;
}

Robert