Site logo

Archived topic

Element Spacing - Only one Page

8 replies · Started by pablo ho on November 12, 2015

Viewing posts 1–9 of 9

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

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 :)

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;
}

null

How about this?:

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

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

No problem! Glad I could help :)

This archived topic is closed to new replies.