Archived topic
Content Below Footer Widgets
1 reply · Started by Callandra Dendias on April 10, 2015
Hello,
I have a question about if I can make content appear BELOW the footer widgets. Currently we have sponsors in the widgets but I would like to have them below the widgets to free up more space since the template allows for only 5 widgets in total. I hope this question makes sense.
Also wondering if there is a way to decrease the blue space between the bottom of the main content section of the site and the actual footer widgets. There is a blue area on my site of essentially wasted space and we think people might not scroll down to even notice the widgets at the bottom as it appears the site ends where it is blue.
Thanks very much for your help.
Hi there,
You have a couple options for adding content below the widgets:
a) Use the Copyright add-on - go to "Appearance > GeneratePress" and add your HTML to the copyright area.
b) Use GP Hooks and add your HTML to the "After Footer Widgets" hook, or any of the hooks below it.
c) If you don't want to use either of the add-ons, I can give you a PHP function which will hook into the area you want it to.
As for the spacing above your widgets, give this CSS a try:
.sidebar .textwidget p:last-child {
margin-bottom: 10px;
}
Adjust the pixels as needed :)