Hi @anilalaman,
This is a feature available only in Hestia Pro theme.
You can check our plans and prices here.
I only want to set a single page padding.
Kindly share the URL of that page. π
Thanks!
-
This reply was modified 5 years, 7 months ago by
Betty.
If you want the padding for all the single post pages, please add the following code to your Appearance -> Customize -> Additional CSS with your desired number:
.section {
padding-left:100px;
padding-right:100px;
}
If you want just for this post add the below one:
article#post-947 {
padding-left:100px;
padding-right:100px;
}
I added but didn’t work both codes.
It appears that you added 0px padding. See here: https://prnt.sc/u11cny
Try to write:
article#post-947 {
padding-left: 100px !important;
padding-right: 100px !important;
}
I wrote this code but nothing changed.
It is changed from my end. Here you can sport the differences:
Before: https://prnt.sc/u11usd
After: https://prnt.sc/u11v5w
The padding is bigger.
Isn’t it possible to decrease this gap that you marked? i see that only the gap between pictures increased. i want to adjoin the content to the sides.
Unfortunately, you can’t decrease it more than the default.
i want to change the default value
You can try to create a child theme and overwrite the CSS file which contains the padding:
How to create a Child theme for Hestia