[Resolved] Element Spacing – Only one Page

Home Forums Support [Resolved] Element Spacing – Only one Page

Home Forums Support Element Spacing – Only one Page

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #152538
    pablo ho

    Hello Tom,

    The Element Spacing is a very usefull addon, but it modigy all Pages.

    How can I modify the Content margin of only one page? Thank you!

    Pablo

    Spacing

    #152591
    Tom
    Lead Developer
    Lead Developer

    Hi Pablo,

    You’ll have to use CSS.

    Find the page ID of the page, and then add this CSS:

    .page-id-xx .inside-article {
        padding: 0px;
    }

    The xx being the ID of the page.

    Let me know if you need more info ๐Ÿ™‚

    #152691
    pablo ho

    Thank you Tom for the prompt reply.

    Sorry, here can I found the Page ID?
    This is the page: https://www.fullen-international.com/?preview=true&preview_id=13&preview_nonce=99a8a794cf

    Thank you again

    #152708
    pablo ho

    Hi Tom,

    I found the Page-id! I have modified the style.css from Worpress Editor like this, but nothing changed.. Im doing something wrong?

    Thank you

    #152733
    Tom
    Lead Developer
    Lead Developer

    Ah, looks like you’re using the one container option.

    Try this:

    .page-id-13 .site-content {
        padding: 0px;
    }
    #152752
    pablo ho

    mm.. the problem persist after replaced by:

    .page-id-13 .site-content {
    padding: 0px;
    }

    null

    #152756
    Tom
    Lead Developer
    Lead Developer

    How about this?:

    .page-id-13.one-container .site-content {
        padding: 0px;
    }
    #152779
    pablo ho

    YES!!! Works now! Thank you Tom!!

    #152819
    Tom
    Lead Developer
    Lead Developer

    No problem! Glad I could help ๐Ÿ™‚

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