Tagged: alignment, Fullwidth Easy Slider, padding
Hi there,
I have a Fullwidth Easy Slider – with Caption Title and Caption Text. I have chosen the ‘Bottom Framed’ Caption Positioning.
On Desktop only – I’d like to increase the padding under the Title and Text. Could you please let me know how to go about doing this? I’ve attached a pic so you can see what I mean.
Also – the Caption Title and Caption Text on mobile is aligned to the centre of the page. I need this left aligned on mobile. Pic attached also to explain what I mean.
Thanks!
Hi Robyone925,
Please try the following in Quick CSS under Enfold–>General Styling:
Desktop:
@media only screen and (min-width: 768px) {
.home .caption_bottom .slideshow_caption {
bottom: 100px !important;
}
}
Mobile:
@media only screen and (max-width: 767px) {
.caption_bottom .slideshow_caption .slideshow_inner_caption {
padding: 0 0px !important;
}
}
Thanks,
Rikard
Wonderful – thanks Rikard – this works perfectly.