[FIXED] How to disable hyphenation in "Flow" theme

tropfenkontor
Visitor
2 0 0

All my texts across my shop are automatically line breaking / have hyphenation. I want to disable this feature altogether. According to the theme developer, there is no option to disable it in the settings. Needs some code.

Anyone got a tip on how to achieve this?

Reply 1 (1)

tropfenkontor
Visitor
2 0 0

Just fixed it myself.

Go to custom code (make a backup of your theme first)

Open assets folder

Open custom-css-shopify.css

Add:

p {
  hyphens:inherit;
}

 

Done.