Venture theme - Remove extra padding from Custom html

Hi,

Im using custom HTML for a banner with a hover effect. I need some advice to remove the extra pixels of padding that appears at the bottom of the image. It is quite difficult to detect but it is still there. :slightly_smiling_face:

Custom HTML goes as:


[
    ](https://www.wixter.se/collections/kampanjer)

And this code is added to Theme.scss.liquid

/*============================================================================
  Remove padding on custom HTML
==============================================================================*/
.section-block--padding {
    padding: 0px;
}

This setting removes most of the padding but leaves some extra pixels in the bottom of the image.

Any idea to remove that?

My URL:

www.wixter.se

@entranced
Add this code in the theme.scss file

.rte {
    background-color: #f7f7f7 !important;
}

Wow, changing background on the padding was a neat solution. Thanks a lot!

I dont understand how it works with the .rte but I’m happy now. :slightly_smiling_face: