Re: I Want All My Title To Be Only 2 Lines

How to limit webpage titles to only two lines?

Emiway
Trailblazer
263 0 50

Title should be only in 2 line if it's more than two line than Dots will come 

URL https://hypestockexchange.in/

Screenshot_2024-01-06-08-53-45-41_40deb401b9ffe8e1df2f1cc5ba480b12.jpg

Replies 2 (2)

PageFly-Henry
Shopify Partner
1184 335 294

Hi @Emiway 

This is Henry from PageFly - Landing Page Builder App

 

You can try this code by following these steps: 

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: paste bellow code in tag </body> -> save.

PageFlyHenry_0-1704511973201.png

 


<style>
@media (max-width: 767px){

.grid-product__title.grid-product__title--body {

    display: -webkit-box !important;

    -webkit-box-orient: vertical;

    overflow: hidden;

    -webkit-line-clamp: 2;

}}

</style>

Hope that my solution works for you.

Best regards,

Henry | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

Emiway
Trailblazer
263 0 50

Not Working