Hi,
I am using Supply theme. Can anyone advise how I can limit the length of the product name so that the ‘Add to cart’ button can be align on the same level?
Please help.
KK
Give me your page URL, so I can give you a custom code to fix.
Hi @KKWAN
Open snippet->product-grid-item.liquid and fine {{ product.title }}
now change this code with below:
{{ product.title | truncate: 30}}
Note: you can change 30 with any number that mean they show 30 character of title.
Thanks for your help.
Hi Jasoliya
Please help us to solve the product title issue on the collection page here is a screenshot https://www.screencast.com/t/TfybUg5C82G
here is the website collection page https://ihighlands.myshopify.com/collections/african-blackwood-bagpipes
@media only screen and (min-width: 767px) {
.product-grid .product .name{ max-width: 265px;}
}
@media only screen and (max-width: 767px) {
.product-grid .product .name{ max-width: 165px;}
}
Thank you so much for your quick reply. But there is no theme.scss file under ASSETS
Then you can add in any cs file you have.
Hi Jasoliya
We are facing issue with mega menu
Sometime mega menu show like this
and sometime show correct with space
here is url https://ihighlands.myshopify.com/
CAN YOU PLEASE HELP US TO SOLVE ISSUE?
Thank you
Try to add this css:
@media only screen and (min-width: 767px) {
#megamenu-main-menu .col-sm-2.static-menu{ padding-right: 20px;}
}
Remove previous code and add this new:
@media only screen and (min-width: 767px) {
#megamenu-main-menu .static-menu{padding-right: 20px;}
}
@Jasoliya SUPERB THANKS FOR YOUR HELP
@Jasoliya Hope you are fine and in good health. below you can check the image view on mobile you can see the product title on the collection page
can you please help me to solve the issue?
thank you
I can see itts fine now.
Hello
We have a store https://ihighlands.myshopify.com/ we want to replace add to the cart button text to VIEW text button when customer click on VIEW page should be redirected to a product page
like this example https://themes.shopify.com/themes/venture/styles/outdoors/preview here is more clear example https://www.screencast.com/t/vPUipiC1wip
As i can see you have paid theme so must need custom code for that.
Hello @Jasoliya
Hope you are fine and good health. I am facing issue with vertical menu width here is screenshot https://www.screencast.com/t/fLpvMQU0ygl
backend width is 100% but its not show 100% can you please help me with code please here is link https://biznimart.myshopify.com/
Thanks always your great support and help
Add this css in assets/bootstrap-purged.css
ul.megamenu li .sub-menu .content { width: 800px; }
ul.megamenu li .sub-menu .content .col-sm-2.static-menu { width: 20%; padding: 0 10px 0 0; }
It will help bit.