Home › Forums › CSS › Trying to remove an unsightly gap › Re: Trying to remove an unsightly gap
November 15, 2012 at 9:01 am
#114416
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;
}