Archived topic
Element Spacing - Only one Page
8 replies · Started by pablo ho on November 12, 2015
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

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 :)
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
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
Ah, looks like you're using the one container option.
Try this:
.page-id-13 .site-content {
padding: 0px;
}
mm.. the problem persist after replaced by:
.page-id-13 .site-content {
padding: 0px;
}

How about this?:
.page-id-13.one-container .site-content {
padding: 0px;
}
YES!!! Works now! Thank you Tom!!
No problem! Glad I could help :)
