Hi there. I used some CSS I found on the form to create space between colored columns on mobile, but I want them to also be centered on mobile: https://afn.strategiccommunication.biz/residential/
Here’s what I’m using: @media screen and (max-width: 767px) {
.my-section .x-column {
margin-bottom: 3%;
width: 80%;
}
@media screen and (max-width: 480px) {
.my-section .x-column {
margin-bottom: 5%;
}
}
Thanks for the help!
