Hi there,
On mobile view, my column boxes appear very large. They are way too large and the text takes up too much space in the boxes. This is inside the 'Multicolumn" section with swipe disabled.
I would like to reduce the heights of the boxes and text sizes so that they don’t take up so much space on the page.
Does anybody know how to solve this?
https://fruitysleep.com/products/fruity-sleep-gummies
1 Like
Hello @harry_12345
Its Artzen Technologies! We will be happy to help you today.
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and paste this at the bottom of the file:
@media screen and (max-width: 500px) {
.multicolumn .multicolumn-list .multicolumn-card.content-container .multicolumn-card__info {
padding: 0 5px 10px;
}
}
after that --:
Let me know if need further assistance
Regards,
Artzen Technologies
Hi @harry_12345
You can do that by adding CSS code at the bottom of your base.css file
.multicolumn-card__info { padding: 0.5rem !important; }
Hello @harry_12345 ,
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code
Go to Assets folder → base.css file or theme.scss.liquid file
Add this following code at the bottom of page
.box {
height: 100px;
}
.text {
font-size: 14px;
}
Save and preview
Hope this can help.
Transcy
1 Like