Hi,
wondering if there is a way to reduce the blank space at the top of the mobile view.
thank you
Hi uvanlj1!
You have some custom CSS which is moving the layerslider down 100px.
#layer_slider_1, #homepagelinks {
box-shadow: none !important;
border: 0 !important;
position: relative;
top: 100px;
z-index: 55;
background-color: transparent!important;
margin-top: -100px;
}
Surround it with this if you only want it applied on larger screens.
@media screen and (min-width: 767px) {
}
Cheers!
Elliott
Great…worked perfectly…
Cheers