Reduce foot height
I would like to make my foot much smaller. I found this post https://siteorigin.com/thread/how-do-i-reduce-the-footer-padding-in-vantage/
But I don’t want to just change the padding, I want to change the footer size. For my home page, I would also like to have only the meta slider and no page. Actually, I would like it to look similar to this site.
http://www.johnhardy.com
This is our free support forum. Replies can take several days.
Need fast email support? Get SiteOrigin Premium
Replies
1Hi mohrrj
Vantage is built in such a way that the footer fills whatever screen space isn’t filled by the site body. It has padding sure, but that’s only a very small. This architecture is deep in the theme’s build so the only way we can hotfix is to set a minimum height for the site body, that way the footer is made smaller. Insert the following under Appearance > Custom CSS to do this:
/* Main Container */ #main { min-height: 500px; }Adjust 500px accordingly.
To hide everything but your Meta Slider on the home page, try the following under Appearance > Custom CSS:
/* Home */ .home header#masthead, .home #main, .home #colophon { display: none; }Replies on this thread are closed.
Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.