Hello, i was wondering how I would be able to reduce the top padding on the “as seen on section” only for mobile? Picture below
Website: www.ecogarby.com
Pass: sss
Hello, i was wondering how I would be able to reduce the top padding on the “as seen on section” only for mobile? Picture below
Website: www.ecogarby.com
Pass: sss
Just add this code to the bottom of the styles.css
@media only screen and (max-width: 479px) {
.caption.text-align-left.align-middle .caption-content.text-align-center {
padding-bottom:0;
}
.caption.text-align-left.align-middle {
margin-bottom: 0;
}
}
@Nick_Marketing Much appreciated!! it worked!
@Acid2Rain
Fantastic!