Hi there – I’m using the full width slider, but it unfortunately looks quite bad in mobile – as it squeezes the text together in an unflattering way.
Is there a way to increase the space above and below the text within the full screen slider only for mobile?
Hey bloodyamazing!
Add this to your custom CSS.
@media screen and (max-width: 500px) {
.responsive #top .slideshow_caption .slideshow_align_caption h2.avia-caption-title {
font-size: 12px !important;
}
}
Regards,
Elliott
thanks, but that code just reduced the title font – it didnt make the space above bigger – but it does look like the space below is bigger.
Can you please help me increase the sze above the text as well? Thank you!
Rand
Hey!
If you make the space above bigger then you’ll need to reduce the font size. There is just not enough space there.
You can use this CSS to add some space above the title.
@media screen and (max-width: 500px) {
.responsive #top .slideshow_caption .slideshow_align_caption h2.avia-caption-title {
font-size: 12px !important;
margin-top: 10px !important;
}
}`
Regards,
Elliott
ok I see, there is no way to force the overall space to be larger so that the text can fit comfortably in the middle?
Hi there,
I’ve gone and changed the header style to a color section instead. It looks better, but now it’s a bit too big in mobile. Is there a way to reduce the top and bottom margins in mobile only for color sections?
Hi!
Add this.
@media screen and (max-width: 767px) {
#av_section_1 main { padding: 0px !important; }
}
Best regards,
Elliott