How do I make the line spacing of the blogs just normal? right now its being double spaced. I went into the code editor, then I went to "content" and wrote
line-height:100%
and it just messed up everything. I am using the wordpress classic 1.5
How do I make the line spacing of the blogs just normal? right now its being double spaced. I went into the code editor, then I went to "content" and wrote
line-height:100%
and it just messed up everything. I am using the wordpress classic 1.5
can you please post teh URL of the blog ?
I also tried editing the blog, and inserting css in the actual blog, but it did nothing.
In style.css :
add
#content P
{
line-height: 0.95em; /**or whatever**/
}
after #content
note that your margins are normal, it looks like that because the letter-spacing (known as kerning)
P, LI, .feedback
{
font: 90%/175% "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
letter-spacing: -1px;
}
Anotehr thing, you have some errors in your stylesheet.
Line 20 :
Delete orphan "{"
Line 61 :
change
color: color:#000000;
to
color:#000000;
Line 356 :
Delete
border-radius: 3px;
You must log in to post.