• Resolved ericazucco

    (@ericazucco)


    I want the text in my blog posts to be single spaced, not double spaced.
    I’ve tried to change every “line-height” value in my CSS code but can’t find the one that will change the body text of each of my blog posts to single space instead of double spacing. My site is at http://www.offdeadline.com. What can I add, and/or is there anything else I can do?
    Thanks for any help you can provide!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello! Beautiful photos on your site!

    Did you resolve the spacing? When I looked at your site it looks like single spacing…

    Thanks!
    Brenda

    Thread Starter ericazucco

    (@ericazucco)

    Thanks so much, Brenda!
    Hmm… Looking with both Chrome and Internet Explorer, this is what I see:
    http://imgur.com/YjtZZbR
    Maybe I’m not using the right terminology, but I’d like to have no space between the lines of text in the posts…Maybe it’s not about line height, but about padding or something?
    Thanks so much for checking and responding!

    Aha….try this for your line height….and adjust up or down and see if that gives the look you are going for:

    .entry-content p {
    line-height:125%;
    }

    Brenda

    Thread Starter ericazucco

    (@ericazucco)

    Thank you so much Brenda… Do you happen to know where in the stylesheet/what section I should put it? Tried it a couple spots but not having luck… #rookie
    Thank you!!

    Try putting this at the bottom-

    .entry-content p, .entry-summary p, .comment-content p, .mu_register p {
    margin: 0 0 16px;
    line-height: 125%;
    }

    Thread Starter ericazucco

    (@ericazucco)

    It worked…Thank you so much!!

    Hooray! You are very welcome!

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Changing line height/make text single space’ is closed to new replies.