Tagged: LayerSlider, opacity, transparency
Hi Guys,
I set up my semi white transparency for both my .png image and text for my layerslider. It shows me the .png image getting the nice semi transparent background as well as the text but after I save it and view on website the background disappears behind the .png image.
view here: http://bit.ly/M6McR3
You’ll see the bottom text getting the background but not the image.
Thanks.
Hey jmikhail!
Edit config-layerslider > LayerSlider > css > layerslider.css, find this code on line 585:
html * .ls-container img,
body * .ls-container img,
#ls-global * .ls-container img {
background: none !important;
min-width: 0 !important;
max-width: none !important;
border-radius: 0px;
box-shadow: none;
border: 0px;
padding: 0px;
}
Replace it with:
html * .ls-container img,
body * .ls-container img,
#ls-global * .ls-container img {
min-width: 0 !important;
max-width: none !important;
border-radius: 0px;
box-shadow: none;
border: 0px;
padding: 0px;
}
Cheers!
Ismael
Thanks a lot, that did the trick… Kriesi should update this in his core files next time he does an update.
Like text everyone still has the option to have a background or not.
Quick question tho, I’m assuming even though I have a child theme, I’ll still have to update this every time there is an Enfold update?