Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Trying to remove an unsightly gap Re: Trying to remove an unsightly gap

#114416
Watson90
Member

Hi @vikingcourt try this;

.rt-block {
padding: 0px 15px;
}

Padding was being added to the top and bottom of the image, if you want to JUST remove the bottom gap then just edit the code to say;

.rt-block {
padding: 15px 15px 0 15px;
}

Once you add that, the part at the bottom will disappear, just added this in your footer section;

.bodylevel-high #rt-bottom {
padding: 0px 0px 15px 0;
}