Tagged: footer
- This topic has 9 replies, 3 voices, and was last updated 11 years, 6 months ago by Sakin.
-
AuthorPosts
-
April 24, 2013 at 3:32 am #7700rawb_inMember
Hi,
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 #7719SakinKeymaster@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_inMembernate1design.com
Thanks
April 25, 2013 at 7:44 am #7787SakinKeymaster@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_inMemberAwesome! It worked! Thanks Sakin
May 1, 2013 at 11:09 pm #8172cheri.schneiderMemberI 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 #8173SakinKeymaster@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.schneiderMemberI 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.schneiderMemberI 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 #8377SakinKeymaster@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.