• Resolved mythusmage

    (@mythusmage)


    Theme twenty sixteen

    Here is the CSS I’m using;

    p {font-size: 16px;
    line-height: 18px;
    font-family: Palatino;
    text-align: justify;
    text-indent: 10px;
    padding: 0px
    }

    Here is the result I’m getting;

    Infinite Adventures

    Now, how do I get rid of the space between the paragraphs

Viewing 2 replies - 1 through 2 (of 2 total)
  • It looks like you resolved the spacing issue but I would do:

    p {
        font-size: 16px;
        line-height: 110%;
        font-family: Palatino;
        text-align: justify;
        text-indent: 10px;
        margin: 0;
    }

    instead of having two separately defined p elements.

    Thread Starter mythusmage

    (@mythusmage)

    Tyler,

    I tried that, it didn’t work. For some reason separating the two elements did the job. Your suggestion is appreciated though.

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

The topic ‘CSS Problem’ is closed to new replies.