Hi,
On the mobile site on my iphone the first slide on the pages is below the menu
what did i do wrong ?
Hey BPC,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width: 767px) {
.responsive #top #main {
padding-top: 110px!important;
}}
Best regards,
Yigit
thanks, but no difference
Hi,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
Best regards,
Yigit
off course
Hi,
I checked the site for any issues but everything you setup is correct, the reason the slider looks small is because it is trying to maintain aspect ratio and hence when the screen width becomes small the height of the slider is reduced to match it’s width. We can use some custom css to change this behaviour.
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width:767px){
#layer_slider_1, .ls-container {
min-height:200px!important;
}
html * .ls-container img, body * .ls-container img, #ls-global * .ls-container img {
padding-top:10vh!important;
}}
Best regards,
Vinay