Dear experts,
I have a problem in how the text columns with images is displayed on mobile. I am using broadcast theme. I want columns that appear horizontally on desktop to appear vertically on mobile.
This is how the columns look like on the desktop:
This is how the columns look on mobile:
(horizontal)
This is how I want the columns to appear on mobile:
(vertical)
How can I make them appear vertical?
Thanks in advance,
Hi @Eduardo_DT ,
Please share your store URL and if your store is password protected then please provide password too.
So that we can help you.
Thank you.
Hello @Eduardo_DT
Please share your store URL and password(If it is password protected).
So that I can check and suggest you a solution.
Thank you
Hi,
URL: https://wearesoluto.com/
Password: aahmen
Thanks
Hi,
URL: https://wearesoluto.com/
Password: aahmen
Thanks
Hi @Eduardo_DT ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/theme.css->paste below code at the bottom of the file:
@media (max-width: 749px) {
#shopify-section-template--15715202236670__164554396534b57461 .grid {
flex-wrap: wrap;
}
#shopify-section-template--15715202236670__164554396534b57461 .grid .column__grid__item {
width: 100%;
margin-left: 0 !important;
margin-bottom: 20px !important;
}
#shopify-section-template--15715202236670__164554396534b57461 .grid .column__image {
padding-top: 100% !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
2 Likes
Thank you very much! It worked.
Can you help me with a similar issue?