Hello,
i have a fixed frame layout with nav on the left side and i didn’t get the layerslider centered. The navigation button appear as it as on the full width top menu layout, though i’ve already set the dimensions of the sidebar to 80 | 20%.
So a part of the slider disappears.
Thanks
Markus
Hey markkus2!
use this code inside of Quick CSS field:
div#layerslider_3 {
width: 900px !important;
}
and adjust as needed.
Cheers!
Andy
Hello Andy, thanks for the hint, this doesn’t do it at all, but this is working:
div#layerslider_3 {
width: 78% !important; //curiously, because sidebar maincontent is 20 | 80%
float: right;
}
!!! But, can you perhaps add something which makes the slider come back to 100% again in smartphone view?
And for all who can’t find the quick css field, it’s the one in the Enfold Child Options at the bottom under general sytling with the palette icon.
cheers
Markus
Hi, already found something:
@media (max-width: 900px){
div#layerslider_3 {
width: 100% !important;
}
that works