How do I Underline Layer text in Advanced LayerSlider
Hi Andy!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.ls-l {
text-decoration: underline;
}
If that does not help, please post the link to your page
Cheers!
Yigit
That CSS underlines all text in all layers in all our Advanced layer sliders.
I want to be able to underline specific text in specific layer.
For example, on the site below, look at the last 4 sliders on the page (Connect, Grow, Serve, Go).
I want to only underline the green “How to” text on each slider.
That text is a separate layer on each slider.
Hi!
Please use following code instead
.ls-slide p:nth-child(5) {
text-decoration: underline;
}
P.S.: In your first slide, first line of text is not set to H1. Please change it to H1 so code would work correctly on all slides.
Regards,
Yigit
Thanks, most formatted as desired.
When I create new slides with multiple layers, please explain how I indicate the layer(s) I want underlined and leave the others plain.