Specifically for mobile, the margin/padding on the sides is too much… I’d like the content wider.
I’m guessing there’s some css I can put into the code injection section, but I can’t seem to figure out what exactly to paste in there.
Specifically for mobile, the margin/padding on the sides is too much… I’d like the content wider.
I’m guessing there’s some css I can put into the code injection section, but I can’t seem to figure out what exactly to paste in there.
Put this in code injection (between <style>
tags)
@media only screen and (max-width: 640px) {
.inner {
padding:0 4rem;
}
}
Change number 4 to whatever fits your needs. The lower the number, the wider the column.
That did the trick! Thanks!