Hi Enfold Team,
I am trying to get my bold (<b>) to be white in my layer slider, it is set as blue site wide. I have tried adding custom CSS in the styles section of the layer slider but it doesn’t override my site wide settings.
I have tried:
b, strong {
color: white;
} !important
and
b, strong {
color: white;
}
and
B {font:arial, helvetica 14px bold; color:white}
and
B {font:arial, helvetica 14px bold; color:white} !important
And in the style CSS I tried
.layersliderbold {
font-weight: bold;
}
then with this at the beginning of the content <div class=”layersliderbold”> and closed at the end with </div>
But nothing is working.
Please help, thanks!
Mary
Hi Enfold Team,
I figured it out! I had to add this:
.layersliderbold {
font-weight: bold; color:#ffffff!important;
}
to my theme wide quick css field not the style custom css field in the layer slider. Then I used <div class=”layersliderbold”> and closed that with </div> at the end
Mary