-
Posts
30 -
Joined
-
Last visited
Reputation Activity
-
surf2023 reacted to Web_Solutions in How to have the category of shop always visible on the left?
Can you share your website URL?
-
surf2023 reacted to Ziggy in How to edit the shop page on mobile for more than one product on a line?
Try this Custom CSS:
@media screen and (max-width: 575px) { .tweak-products-nested-category-type-sidebar .products.collection-content-wrapper .nested-category-children { display: flex; flex-wrap: wrap; justify-content: center; overflow-x: hidden; padding-top: 15px; } } -
surf2023 got a reaction from Ziggy in How to edit the shop page on mobile for more than one product on a line?
Amazing! It's working very nicely, thank you.
And... do you know if there is a way to make the 'categories' menu not on one line but as a column like on desktop?
Thank you
Jacky
-
surf2023 reacted to Ziggy in How to edit the shop page on mobile for more than one product on a line?
Try this:
@media only screen and (max-width: 767px) { .products.collection-content-wrapper .list-grid { grid-template-columns: 1fr 1fr !important; } } -
surf2023 reacted to Ziggy in How to reduce size in mobile of the language selector ?
Can you share your website URL?
-
surf2023 got a reaction from Ziggy in How to reduce size in mobile of the language selector ?
Amazing: it worked, thank you!
-
surf2023 reacted to Ziggy in How to reduce size in mobile of the language selector ?
Add this to Custom CSS:
.header-menu .language-picker { font-size: 16px; } -
-
surf2023 reacted to creedon in How to change "Quantity" text on product page
Yes. Two ways to go. Proceed the code you are using with the item id for the page.
#item-63b4cce09c26cf7dc0a682ce .quantity-label blah blah blah...
Or you could add a tag to a product such as custom quantity and then your CSS would start like...
.tag-custom-quantity .quantity-label blah blah blah...
Let us know how it goes.