Home page product title is too long,The product title on the homepage is too long and has 3 lines. Can it be set to 2 lines? Will this be bad for SEO?
1 Like
Hello There,
Please share your store URL and password.
So that I will check and let you know the exact solution here.
I’m sorry but I don’t want to share my website, can you tell me where to add the code?
1 Like
Hi @David235
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > main.css and paste this at the bottom of the file:
.card__title.font-bold {
font-size: 13px;
}
Hi @David235
You can also try this solution. After two lines, we can add … Add this code and check it:
.card__title {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
height: 3em;
}