Tagged: footer
- This topic has 9 replies, 3 voices, and was last updated 11 years, 12 months ago by
Sakin.
-
AuthorPosts
-
April 24, 2013 at 3:32 am #7700
rawb_in
MemberHi,
Is it possible to have the footer widgets only on the homepage/main page? I don’t need it to show on all the pages. Also, Is there any way to remove the white space between the Footer Widgets and Featured Post Slider? Please let me know.
Thanks for the help!
April 24, 2013 at 12:04 pm #7719Sakin
Keymaster@rawb_in: Yes you can decrease the white space between the Footer Widgets and Featured Post Slider. That is not a problem. But you cannot remove show footer widget only in homepage. Footer means it will be on all page. But there is a css trick that you can use to hide it.
So, first send me your site URL.
April 25, 2013 at 12:10 am #7767rawb_in
Membernate1design.com
Thanks
April 25, 2013 at 7:44 am #7787Sakin
Keymaster@rawb_in: To decrease the white space between the Footer Widgets and Featured Post Slider. Decrease the padding top in the following css and add it in “Appearance => Theme Options => Custom CSS” box.
`.blog #main { padding-top: 40px; }`Actually the footer widget is to be show in all pages. But the following css will help you to hide it in other pages and will only show in your homepage.
`
#footer-sidebar { display: none; }
.blog #footer-sidebar { display: block; }
`April 25, 2013 at 9:37 pm #7821rawb_in
MemberAwesome! It worked! Thanks Sakin
May 1, 2013 at 11:09 pm #8172cheri.schneider
MemberI was trying to do the exact same things but it didn’t work. I was able to reduce the space between the footer widgets and the featured post slider, but not much. I am not using the headline or featured content option so would like to reduce that space between the slider and the footer widgets.
Also, when I used the code to try to hide the footer widget from all pages but the homepage, it ended up being hidden from all pages but the blog page.
http://www.icservices.com Thank you!May 1, 2013 at 11:19 pm #8173Sakin
Keymaster@cheri.schneider: There is empty main wrapper in homepage. You should have just disable homepage or just add the following css in “Appearance => Theme Options => Custom CSS” box.
.home #main { display: none; }
May 2, 2013 at 12:03 am #8188cheri.schneider
MemberI had checked “disable” for homepage headline and featured content if that’s what you mean- but there was still that space. The css you sent worked perfectly though! Thanks!
May 2, 2013 at 9:11 pm #8289cheri.schneider
MemberI used the code below to try to hide the footer widget from all pages but the homepage, but it ended up being hidden from all pages but the blog page.
#footer-sidebar { display: none; }
.blog #footer-sidebar { display: block; }Is there something else I could use? Thank you!
May 3, 2013 at 10:55 pm #8377Sakin
Keymaster@cheri.schneider: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box:
#footer-sidebar { display: none; }
.home #footer-sidebar { display: block; } -
AuthorPosts
- The topic ‘Footer and White Space’ is closed to new replies.