I’ve read through several of the posts in the forum and tried code that’s been provided as solutions to no avail. I haven’t been using cornerstone to develop my website. But some of the solutions I’ve read provided a means using cornerstone, but cornerstone’s preview functionality wasn’t working, so I’ve already posted in the forum on that issue.
Ultimately, my goal is to have three columns show as three columns on mobile. In Mobile view, they reduce to one column on top of each other. My goal is to prevent the wrapping and have all three columns show up side by side on mobile.
The webpage I’m working on is: https://www.garrettandwalker.com/top-rated-greensboro-speeding-ticket-lawyer/
Here’s what I added to my custom css and it didn’t work:
@media (min-width: 481px) and (max-width: 767px) {
.break-in-three .x-column.x-sm {
float: left;
width: 48%;
margin-right: 4%;
margin-bottom: 4%;
}
.break-in-three .x-column:nth-child(2n) {
margin-right: 0;
}
}
/Make the image take the width of columns/
@media (max-width: 767px) {
.break-in-three .x-column .x-image,
.break-in-three .x-column .x-image img {
width: 100% !important;
max-width: none !important;
}
}
Thank you for your help.

