• 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

Viewing 4 replies - 1 through 4 (of 4 total)
  • can you please post teh URL of the blog ?

    Thread Starter d3lilley123

    (@d3lilley123)

    Thread Starter d3lilley123

    (@d3lilley123)

    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;

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Line-spacing of the blogs’ is closed to new replies.