I have placed some banners in "main-content-1" on the homepage, but there seems to be some extra white spacing after the banner (see attached; I've circled the extra spacing).
Any advice on how to reduce that spacing some?
Much thanks
timpennington Hi You have this code in custom css
.t3-main-content .bannergroup .banneritem { float: left; margin-right: 20px; }
replace it with
.t3-main-content .bannergroup .banneritem { float: left; margin-right: 20px; margin-bottom:0px; }
Thank you!
timpennington welcome