x

remove space above Slideshow

I'd like to remove all the extra spacing above and below the slideshow element on my page, but the CSS editor seems to only apply to the page wrapper?      

I found a similar question - but I can't locate the class ".wslide".

Thanks

image

764 Views
Message 1 of 3
Report
1 Best Answer

Best Answer

This worked for Slideshow.

.wslide {
margin: -190px 0px; /*sets top and bottom margin negative to reduce spacing*/
}

Super easy - just copy & paste this as a new class.       Thanks @braybin 

https://community.weebly.com/t5/Site-Editor/adjust-slideshow-height/td-p/103291

View Best Answer >

755 Views
Message 4 of 3
Report
2 REPLIES 2

Best Answer

This worked for Slideshow.

.wslide {
margin: -190px 0px; /*sets top and bottom margin negative to reduce spacing*/
}

Super easy - just copy & paste this as a new class.       Thanks @braybin 

https://community.weebly.com/t5/Site-Editor/adjust-slideshow-height/td-p/103291

756 Views
Message 4 of 3
Report

When I view the source, I don't find anything of the class "wslide".  I went ahead and added to _responsive.less the following so it wouldn't get cut off on a mobile device.

@Media screen and (min-width: 800px) {

#877331147393031353-slideshow /*update this if you add another one */
   {margin: -150px 0px !important; /*sets top and bottom margin negative to reduce spacing*/}

}

469 Views
Message 4 of 3
Report