Tagged: padding
Hi,
We installed the plugin “Simple Share Buttons Adder” which was recommended from Enfold team in a different post and it is working perfectly fine.
However, the buttons are being added right after the contents (at the end) and without any space. How can I add a padding of 20px to ALL pages on the website through CSS?
Thank you
Hi sitesme!
Please post the link to your page where we can see an example so we can provide you an accurate solution.
Cheers!
Yigit
Hi Yigit,
Please check the link in private. Thank you
Hey!
The link you posted is returning “Page Not Found”.
Cheers!
Josue
Hi Josue,
Please check again in PVT
Hey!
Try adding this code to the Quick CSS:
.ssba.ssba-wrap {
padding: 20px;
}
Cheers!
Josue
Hi Josue,
This seems to move the whole div in all directions. Any way to just move it vertically? Something such as “top padding”?
Change it to:
.ssba.ssba-wrap {
padding: 20px 0;
}
No effect unfortunately.
Try increasing the value, 20px to something higher like 60px.
Added 100px but it is adding space AFTER the social share icons.
I would like the space after the end of the page (contents) and BEFORE the social share icons.
Ok, try with:
.ssba.ssba-wrap {
padding: 100px 0 0 0;
}
padding
accepts 4 values in this order: top right bottom left
, so in the code above we only increase top
.
No effect with the latest code
Found something strange…
In the homepage it seems to be working fine. Inner pages don’t work the same way.
So I changed the code above to 500px and… inner pages are perfect now: http://dns.d.pr/QI13/1aNmQOeu but homepage is terribly bad: http://dns.d.pr/165Rk/3zAtO3VK
Can you change it back to 100px and link me one inner page where the issue occurs.
Best regards,
Josue
Hi Josue, please check below changed with 100px
Ok, use this one instead:
.ssba.ssba-wrap {
padding: 100px 0 0 0;
clear: both;
}
Regards,
Josue
Superb Josue,
Thanks a million :)
You are welcome, glad to help :)
Regards,
Josue