My website is www.auctionstoppers.com.
On the Contact page, I have created the How to Reach Us section with 3 columns (left column is right aligned and right column in left aligned). For the tablet and phone views, I have hidden the picture in column 2 and attempted to center align the text for column 1 and 3. It is only working for column 3, but I’m not sure what is needed to center column 1 too. What am I missing?
If there is a way to have the picture as well that would be great, but it was just taking up way too much space in the mobile views so I removed it. Any fix for that where it will look good (not just another stacked row)?
Also, once they are center aligned, is there a way to move the icons in the icon list in column 1 back to the left (so they look like the others in column 3) just for the mobile views?
Here’s the custom CSS I’ve added for these things:
.x-ul-icons.icon-on-right li [class*=“x-icon-”] {
float: right;
padding-left: 25px;
}
@media (max-width: 767px) {
.mobile-hide {
display:none!important;
}
}
@media (max-width: 767px) {
.page-id-19 #x-section-3 {
text-align: center;
}
}
Thank you in advance!