Tagged: 

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #7700
    rawb_in
    Member

    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!

    #7719
    Sakin
    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.

    #7767
    rawb_in
    Member

    nate1design.com

    Thanks

    #7787
    Sakin
    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; }
    `

    #7821
    rawb_in
    Member

    Awesome! It worked! Thanks Sakin

    #8172

    I 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!

    #8173
    Sakin
    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; }

    #8188

    I 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!

    #8289

    I 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!

    #8377
    Sakin
    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; }

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Footer and White Space’ is closed to new replies.