Hi.
I used the 6 column hack that was posted in another thread and it worked great. However, it’s really squashed in mobile. I’d like to have them stack vertically in the mobile version. What CSS is necessary to make it look right?
Thanks!
Hey Veronica!
Add this to your custom CSS.
@media screen and (max-width: 400px) {
#top .av_one_fifth {
clear: both !important;
margin: 0px !important;
left: 50%;
transform: translate(-50%);
}
}
Regards,
Elliott