I added a border to the layerslider by adding this css code in the quick CSS window
.ls-container {
border: 20px solid;
}
but I cannot figure out how to modify the border color.
What code do I use and should I use the quick css window or the custom.css?
Thanks,
M
Hi miketran!
Simply define a third paremeter in the border property you already created:
.ls-container {
border: 20px solid red;
}
Regards,
Josue
Thanks Josue,
I have tried that and for some reason the border color is not changing, although the border width works fine.
I am putting the code in the Quick CSS.
Here’s what I have:
.ls-container {
border: 20px solid red;
}
Here is the site: http://www.acrosolutions.com/
Any ideas?
Hey!
Yes, that happens because there is another rule overwriting it, however adding !important will force it to change:
.ls-container {
border: 20px solid red !important;
}
Cheers!
Josue