Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Hey,
I’m trying to figure out how to adjust the padding of the .panel-row-style for one particular page:
I have the following in in my child theme which allows me to adjust the padding for all the pages
.layout-full .panel-row-style{
margin:0 -1000px;
padding:30px 1000px 100px 1000px;
}
What is the code for page-id-35…
I tried:
.page-id-35-0.layout-full .panel-row-style
Sorry, something went wrong with the code
I have to following in my child theme to update padding for all the pages
.layout-full .panel-row-style{
margin:0 -1000px;
padding:30px 1000px 100px 1000px;
What is the code to adjust this for 1 particular page?
Hi Martin
Targetting that to one specific page should be possible with the following code.
body.page-id-35 .layout-full .panel-row-style{ margin:0 -1000px; padding:30px 1000px 100px 1000px; }Let me know if that does the trick.
Thanks Greg.
That worked for me!!