• Resolved wdawson

    (@wdawson)


    Ok, so I’m working on my first theme and everything’s going pretty well so far. I’m trying to have all my text aligned on a horizontal grid that has a basis of 10px. Changing the respective margins and linesheights has been easy enough, but is there any way to change the default size of a “return”?

    I have my lineheight set at 20px for the content of each post, but a return appears to be about 27 or 28px. Ideally I’d have it be 30. I know I can just skip a line in the post (shift-return twice), but I’d rather have there be 30px between paragraphs. Am I making sense? Thanks a lot.

Viewing 2 replies - 1 through 2 (of 2 total)
  • usually done with the margin of the p tag:
    p {margin-bottom: 22px; }
    adjust the number
    could be more complex, depending on your styles so far, such as:

    .post p {}
    or
    #content p {}
    or, or, ..

    Thread Starter wdawson

    (@wdawson)

    ahhh of course, exactly what I was trying to do and makes so much sense. thanks a lot.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Any way to change return size?’ is closed to new replies.