How to fix offset text in mobile product description?

Hey guys!

Please help me solve the problem, the text in the table in the product description gets out of the box, this happens only in the mobile version:

1 Like

@ermyv

Please share shop URL.

1 Like

https://bychuri.ru

1 Like

@ermyv

Please add the following code at the bottom of your assets/theme.css file.

.template-product .scrollable-wrapper {
    overflow-wrap: break-word;
}

Hope this works.

Thanks!

1 Like

hello @ermyv

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.template-product .scrollable-wrapper {
    overflow-wrap: break-word;
}
1 Like

hii, @ermyv
Paste this code in theme.scss file.

.scrollable-wrapper table tr td p font {
    overflow-wrap: break-word !important;
}

Thank You.

1 Like

@dmwwebartisan

@Anonymous

@Kinjaldavra

Guys, thank you very much for your help!

2 Likes