Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #11861
    saludypaz
    Participant

    Is there a way to turn off the automatic hyphenation on pages?

    wp.saludypaz.org

    #11864
    Sakin
    Keymaster

    @saludypaz: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .site-content article {
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	hyphens: none;	
    }
    #11915
    saludypaz
    Participant

    Thank you!

    #35222
    metroponds
    Participant

    I have tried adding that code and it is not working for me. Why in the world would a web site EVER want auto hyphenating. Ridiculous. email addresses and phone numbers looks wrong, etc.

    Can you please assist? site is http://premierpond.com

    #35312
    Sakin
    Keymaster

    @Michael: You are using different theme so you need to add the following css in “Appearance => Theme Options => Custom CSS” box.

    #content article {
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	hyphens: none;	
    }
    #35321
    metroponds
    Participant

    Thanks – still does not work.

    #35322
    Sakin
    Keymaster

    @Michael: There is issue in your custom CSS. there is no closing bracket of this css. Missing }. Add the missing } where you need for only devices with 480px.
    @media screen and (max-device-width: 480px){

    #41250
    kathleenjm
    Member

    Hi, I’ve tried all of these suggestions above but they are still not working to remove the hyphenated words on the page. Can you offer any insight? My website theme is Catch Everest.

    #41281
    Sakin
    Keymaster

    @kathleenjm: For Catch Everest theme, you can try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    .site-content article {
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	hyphens: none;	
    }
    #110152
    SShellerina
    Participant

    site: xi.notocon.org, using the adventurous theme

    when i put the recommended CSS code (the one below) in at “Appearance => Theme Options => Custom CSS” box, it 1) didn’t work and 2) now my Custom CSS box has disappeared, so I can’t even get back there to make any alterations.

    #content article {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
    }

    #110162
    Sakin
    Keymaster

    @sshellerina: Now, custom css has been supported by WordPress from version 4.7. So now you can add custom css in “Appearance => Customize => Additional CSS”. What’s not working can you let me know? When I check in your site it working fine.

    #110194
    SShellerina
    Participant

    i was able to figure it out… pretty much immediately after i posted lol

    thanks for the help though

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Hyphens’ is closed to new replies.