Lately, when I write a post, letters in a single word will just wrap around to the next line instead of moving the word to the next line. Something that just started in the last 2 days or so.
Anyone know what to do to fix this?
Thanks!
Lately, when I write a post, letters in a single word will just wrap around to the next line instead of moving the word to the next line. Something that just started in the last 2 days or so.
Anyone know what to do to fix this?
Thanks!
Hi northsidenotch
Please open style.css line: maybe 82
h1,
h2,
h3,
.h1,
.h2,
.h3{
clear:both;
font-weight:bold;
overflow:hidden;
margin:.5em 0;
font-family:"Times New Roman", Times, serif;
word-break:break-all;
word-wrap:break-word;
}
remove below 2 style rule.
word-break:break-all;
word-wrap:break-word;
thank you
Thanks!
Just did what you said, though, and the words are still getting broken up.
Hi northsidenotch
Anew, the problem was investigated.
<a href="http://www.northsidenotch.com/2012/03/marte-homers-again-in-extra-innings-loss.html" rel="bookmark" title="Permalink to Marte homers again in extra innings loss">
Marte homers again in extra <br/>innings loss
</a>
Raindrops theme is not add <br/>.
Please check plugins in use.
The problem was resolved for a while, but now it's back.
Example (link)
Hi northsidenotch
Example seems good
resolved ?
Still not resolved.
Hi northsidenotch
My browser display below.
http://kwout.com/cutout/u/9z/ug/yjb_bor.jpg
Would you explain what kind of display he would like to use?
Here's mine:
I understood the problem.
h1,h2,h3 has word-break style rules.
It specifies in order to store a title into a narrow space.
When if you not need this rules only entry title.
Add below style rules where style.css last line
.entry-title{
word-break:normal;
word-wrap:normal;
}
When if you not need this rules all of titles.
style.css line:81
h1,
h2,
h3,
.h1,
.h2,
.h3{
clear:both;
.......
word-break:break-all;
word-wrap:break-word;
}
change below
h1,
h2,
h3,
.h1,
.h2,
.h3{
clear:both;
.......
/*word-break:break-all;
word-wrap:break-word;*/
}
Thank you.
Tried that, didn't work.
Thanks.
This topic has been closed to new replies.