[Support request] Limit the Text Margin to Post and Page Content

Home Forums Support [Support request] Limit the Text Margin to Post and Page Content

Home Forums Support Limit the Text Margin to Post and Page Content

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1548565
    Sherman

    What I need is to increase the margin of headings and text of the main contents of a blog or page, but when I change the css file, it always comes with some side-effects. Can I limit the text margin only in these places?

    For example, if I use:
    p,h1,h2,h3 {margin:30px}
    all text, including text in page hero or my homepage block will change together.

    if I use:
    .inside-article p,h2 {margin:30px;}
    it seems the same, margin changed for text almost everywhere

    #1549224
    David
    Staff
    Customer Support

    Hi there,

    try:

    h1.entry-title,
    .entry-content p,
    .entry-content h2,
    .entry-content h3 {
        /* your styles */
    }

    However, may i ask why you need to add 30px all round your text elements ?

    #1550920
    Sherman

    Thanks, David. I need the spacing for the overall layout fitting.

    #1551498
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.