It is good experince to use layer slider WP. there are many cool features.
I am experiencing an issue, I changed the colour of custome text on slider to white at backhend, however, at front end its looking black ( check here, www.clickon.com.pk). I want white colour of text.
Please suggest me some easy solution. I am not expert just naive in this field.
Hi there,
It is good experince to use layer slider WP. there are many cool features.
I am experiencing an issue, I changed the colour of custome text on slider to white at backhend, however, at front end its looking black ( check here, www.clickon.com.pk). I want white colour of text.
Please suggest me some easy solution. I am not expert just naive in this field.
Hey ajex737,
The color is overwritten by your theme's custom CSS, in this file: http://clickon.com.pk/wp-content/themes/directory-theme/assets/css/custom-style.css
on line 35.:
body, .main-section p, .mce-content-body p {
font: Normal 14px/22px "PT Sans", sans-serif;
text-transform: none;
color: #000000 !important;
}
The "color: #000000 !important;" part is responsible for it. Removing the important attribute from it will most likely prevent it.