Hi there,
I see there are a lot of threads about adjusting the amount of padding/space between columns, and I’ve found a good solution for my 1/5 columns below:
.av_one_fifth {
margin-left: 1% !important;
width: 19.1% !important;
}
.av_one_fifth.first{
margin-left: 0% !important;
}
However, the mobile version is a disaster (see included link).
How can I get the reduced padding AND have a mobile version that stacks nicely? (PS – the mobile version without the padding adjustment stacks each of those columns on top of each other).
Thank you!
Hey kellyCraftMedia,
Please try to include your CSS in a media query to only apply to screens above mobile instead:
@media only screen and (min-width: 768px) {
.av_one_fifth {
margin-left: 1% !important;
width: 19.1% !important;
}
.av_one_fifth.first{
margin-left: 0% !important;
}
}
Best regards,
Rikard
That’s perfect thank you!
I’m getting the hang of this but your help is SO appreciated!
Hi,
Glad Rikard could help, unless there is anything else we can help with on this issue, shall we close this then?
Best regards,
Mike
Close away!
Cheers,
Hi,
I’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon