Greeting, The homepage Full Width Easy Slider on m y mobile device is slightly cut off. I’m unable to view the text and buttons. Can we make things taller so everything fits?
Hey jasonlthornton,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
.html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
padding-top: 10px;
}
}
Best regards,
Rikard
Thank you keymaster, I added that code but am still having issues with the slides that have 2 lines in the header. For example the first slide the buttons are still cut off.
Hi jasonlthornton,
Please try to use this CSS code (I just added few things on top of Rikard’s code):
@media only screen and (max-width: 767px) {
.html_header_transparency #top .avia-builder-el-0 .container,
.html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
padding-top: 10px;
}
#top .avia-fullwidth-slider .avia-slideshow-inner {
min-height: 240px;
}
#top .avia-fullwidth-slider .avia-slideshow-inner img {
min-height: 240px;
height: 240px;
width: auto;
max-width: none;
}
}
Hope it helps.
Best regards,
Nikko