Does anyone know how I can stack my trust badges into 2 columns on mobile as opposed to one? I currently have an app installed named “section store” through which I added the badges.
Thanks
A Shopify store owner using the Dawn theme wanted to display trust badges in a 2-column layout on mobile devices instead of a single column. The badges were added through the Sectio app.
Solution provided:
flex-direction: unset and width: 50% to the feature type boxesOutcome:
The CSS solution worked perfectly, successfully stacking the trust badges into two columns on mobile view.
Does anyone know how I can stack my trust badges into 2 columns on mobile as opposed to one? I currently have an app installed named “section store” through which I added the badges.
Thanks
Hi @shanagarryceo ,
This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the TOP of the file:
@media screen and (max-width: 767px){
.feature-type1 .wrapper-box {
flex-direction: unset !important;
}
.feature-type1 .box {
width: 50% !important;
}
}
I hope it would help you
Best regards,
Richard | PageFly
Worked perfectly! Thank you so much