Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #9597
    bill
    Member

    Forgive if this has come up already before — and perhaps by me in a one of my older tickets:

    Is there a way to decrease the size of the paragraph breaks, or is this a product of the responsive theme?
    The page breaks are a half an inch on the text of the pages. Huge.

    http://www.faithlcmc.org/?page_id=231

    I’ve already got this CSS installed:

    /*line spacing and post padding*/
    .site-content article { margin-bottom: 10px; }

    @media
    screen and (min-width: 1382px) { { margin-bottom: 0px; } }

    @media
    screen and (min-width: 1190px) { { margin-bottom: 0px; } }

    @media
    screen and (max-width: 1060px) { { margin-bottom: 0px; } }

    @media
    screen and (max-width: 960px) { { margin-bottom: 0px; } }

    #9661
    Sakin
    Keymaster

    @bill: Yes this is responsive theme. The css that you have added in not for the paragraph. You can delete that.
    The css will be as below, if you want it to be universal for all devices.

    p {
        margin-bottom: 10px;
    }

    But if you want to change only for large devices then it will be as below:

    @media screen and (min-width: 1060px) {
    p {
        margin-bottom: 10px;
    }
    }
    #9664
    bill
    Member

    thank you.

    That looks nice and compact.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘large page breaks’ is closed to new replies.