Archived topic
Section/column padding
1 reply · Started by Damon on March 5, 2019
Hi, on mobile, there's a 20px border around my front top graphic. I'm trying to get rid of the left/right padding on either side, but can't figure it out. It's only a bother on mobile. Might you be able to assist?
Specifically, I'm concerned with MOBILE, and the graphic near the top of the page.
Thank you!
Hi there,
This is where the padding is coming from:
https://www.screencast.com/t/OzJhEcIi
Can't quite tell where that's coming from as I can't see the source.
You can try this CSS to overwrite it:
@media (max-width: 768px) {
#generate-section-1 .lgc-column.lgc-last {
padding: 0;
}
}