Why is my product description being cropped?

Solved

Why is my product description being cropped?

Jossara
Tourist
8 0 4

Hello!

 

I noticed that my product description is being cut. 

 

Please see the attached picture.

Jossara_0-1710939344513.png

 

Thanks!

 

 

Store: inyathisa.com

Accepted Solution (1)

tim
Shopify Partner
3765 351 1385

This is an accepted solution.

This is because you have this code added to your assets/base.css:

.product__title {
    position: absolute;
    left: 22%;
    bottom: 93%;
}

Because you have absolute positioning and bottom is set, longer titles will grow up and under the header.

I'd totally remove this.

If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.
I can be reached via e-mail [email protected]

View solution in original post

Reply 1 (1)

tim
Shopify Partner
3765 351 1385

This is an accepted solution.

This is because you have this code added to your assets/base.css:

.product__title {
    position: absolute;
    left: 22%;
    bottom: 93%;
}

Because you have absolute positioning and bottom is set, longer titles will grow up and under the header.

I'd totally remove this.

If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.
I can be reached via e-mail [email protected]