• Resolved OurVoicesAR

    (@ourvoicesar)


    Am having trouble eliminating hyphenated words on our new church website with the Quark theme. Thanking you in advance! Can someone direct me?

Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter OurVoicesAR

    (@ourvoicesar)

    What I mean is we do not want any words to be hyphenated, but want the full word to go to the next line instead.

    Can you post a link to a page that shows the hyphenated words?

    Thread Starter OurVoicesAR

    (@ourvoicesar)

    THANKS for your quick response, Stephen!
    We’ve fixed it finally. We found the correct css code but apparently there was a conflict in a plugin. Am reinstalling them one-by-one now to find the culprit.

    {
       -webkit-hyphens: none;
       -moz-hyphens:    none;
       -ms-hyphens:     none;
       hyphens:         none;
    }

    I wanted to disable hyphenation when I set up my site, too. The code that I added to my child theme’s style.css was:

    p, h1, h2, h3, h4, h5, h6
    {
    	-moz-hyphens: none;
    	-ms-word-break: keep-all;
    	-webkit-hyphens: none;
    	hyphens: none;
    	word-wrap: normal;
    	word-break: normal;
    }

    I’m not saying that it’s better, just that I notice a couple of extra definitions.

    Thread Starter OurVoicesAR

    (@ourvoicesar)

    Thanks, Ian! We got the church website to work properly. But I have another site built on Quark that is still broken… using the exact same code there, but the https://www.faulknerhistory.org site has hyphenated words in the front page widget areas. I tried your code above, but that didn’t seem to help it, either…Any ideas!?

    Theme Author Anthony Hortin

    (@ahortin)

    Try adding the following to remove the hyphens from your widgets

    .page .widget-area .widget {
        hyphens: none;
    }
    Thread Starter OurVoicesAR

    (@ourvoicesar)

    Thanks, Anthony! That did the trick for the history site. Appreciate it.

    Theme Author Anthony Hortin

    (@ahortin)

    Great to hear! ??

    Anthony, would that bit of code above prevent hyphens on the whole site, or just in widgets? I have hyphenations happening all over my site https://batesvision.com.

    There are a bunch of other problems but i am looking through support now to find help, and will otherwise post a new thread for those. Thank you! Claudia

    Theme Author Anthony Hortin

    (@ahortin)

    That last bit of css I posted will only stop the text in widgets from automatically hyphenating.

    Could you provide with css what would stop all texts from hyphenating? I guess in body copy it’s not as bad but any titles, headlines and larger texts look bad. Thank you!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Deleting All Hyphenated Words’ is closed to new replies.