• Theme: WPComic
    URL: https://www.sinkers.org/stage

    I’ve tried the advice on a couple of these threads, but none of them match my theme.

    Like a million other people here, I’m asking: where’s my paragraph breaks? I’ve tried multiple
    tags, I’ve tried <p>, but nothing seems to work. I’m about to get all ham-handed on it, and just insert a line with a single period on it, and make the period white, just so my “About” page doesn’t have a wall of text on it.

    TIA,
    mf

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter flugennock

    (@flugennock)

    Umm, that is, I’ve tried multiple line-break tags. Apparently, the comment editor took me literally and inserted an actual line break. Would that the editor for my “About” page would do that.

    Moa

    (@voldeobum)

    Just a guess, but I think this is a CSS issue. There doesn’t seem to be any bottom margin or padding applied to the p element, which makes all the paragraphs sit right underneath each other.

    In your theme’s style.css file, change this:

    #article_body p {
    line-height:1.24em;
    padding-bottom:0;
    }

    To something like this:

    #article_body p {
    line-height:1.24em;
    padding-bottom: 1em;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘no paragraph breaks!’ is closed to new replies.