• Resolved llazarus

    (@llazarus)


    I have no knowledge of how to change themes, but would very much like to stop the automatic hyphenation that is performed on posted text. Is there an easy way to do this?

    Sample of hyphenation…

    as well as 10 exclu-
    sive games.

    How do I make it do this…
    as well as 10
    exclusive games.

    Many thanks for any help.

    Site

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author csthemes

    (@csthemes)

    Open the style.css file and look for the following codes:

    .entry-content {
    	margin-bottom: 20px;
    	word-wrap: break-word;
    	-webkit-hyphens: auto;
    	   -moz-hyphens: auto;
    	    -ms-hyphens: auto;
    		hyphens: auto;
    	}

    Remove all hyphens related declaration, so it become:

    .entry-content {
    	margin-bottom: 20px;
    	word-wrap: break-word;
    	}
    Thread Starter llazarus

    (@llazarus)

    Many thanks

    I changed Auto to None and it worked perfectly – makes it easy for me to change my mind in the future 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Suppress automatic hyphenation’ is closed to new replies.