How to reduce top padding on mobile only?

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

1 Like

@Acid2Rain

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;
}
}
1 Like

@Nick_Marketing Much appreciated!! it worked!

1 Like

@Acid2Rain
Fantastic!