Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › change iconfont color › Reply To: change iconfont color
October 29, 2014 at 2:40 pm
#926
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