Why is my product description being cropped?

Hello!

I noticed that my product description is being cut.

Please see the attached picture.

Thanks!

Store: inyathisa.com

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.

1 Like