Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #64320
    Bandit
    Member

    I’v got the free version of this theme and I’ve noticed that when I write text the site cuts the word and puts a line after like in my screenshoot. How many words can I use on each row? Or can I change that there will not be this lines?

    Thanks..

    http://i.imgur.com/XOHTsvr.jpg

    #64341
    Bandit
    Member

    I’ve solved it self, I saw that in Microsoft Edge there where no cuts so I looked in the Style.css and found whats made it break the word and disabled it..

    .site-content article {
    	border-bottom: 1px solid #eee;
    	word-wrap: break-word;
    	-webkit-hyphens: auto;
    	/*-moz-hyphens: auto;*/
    	hyphens: auto;	
    }
    #64385
    Sakin
    Keymaster

    @Bandit: Yes, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .site-content article {
      -webkit-hyphens: manual;
      -moz-hyphens: manual;
      hyphens: manual;
    }
Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Cuts in text’ is closed to new replies.