2013-04-26 31 views
0

我的WordPress正在切斷文本,我想知道是否可以關閉該文本或修復它。在瀏覽頁面時,文本正在被截斷(連字符)

例如,如果文本寬度不適合的,而不是下一個字移動到新行的頁面寬度,WordPress是割字的脫了一半

了一句:"The quick brown fox jumps over the lazy dog system"

應該是(如果它不適合寬度):

The quick brown fox jumps over the lazy dog 

system 

會發生什麼:

The quick brown fox jumps over the lazy dog sys- 
tem 

例如,字system正被截斷。

+0

被切斷的話,或者是複姓? – 2013-04-26 21:00:44

回答

1

最有可能的,CSS是罪魁禍首(使用TwentyTwelve?),找到例如: -

.site-content article { 
    word-wrap: break-word; 
    -webkit-hyphens: auto; 
    -moz-hyphens: auto; 
    hyphens: auto; 
} 

替換爲:

.site-content article { 
    word-wrap: normal; 
    -webkit-hyphens: none; 
    -moz-hyphens: none; 
    hyphens: none; 
}