Hiding Footer

Discussion in 'ButterBelly WordPress Theme' started by kingranchgal1, Mar 5, 2014.

  1. kingranchgal1

    kingranchgal1 New Member

    Joined:
    Feb 24, 2014
    Messages:
    3
    Likes Received:
    0
    Is there any way to hide the footer on the home page?
    Thank you!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .home .footer_top_container {
    display: none;
    }
    .home .footer_container {
    display: none;
    }
    .home .bottom_footer_container {
    display: none;
    } 
    This will solve your issue.
     
  3. kingranchgal1

    kingranchgal1 New Member

    Joined:
    Feb 24, 2014
    Messages:
    3
    Likes Received:
    0
    Thank you!

    One more question- Can the footer also be hidden on pages?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard, instead of previous provided code.

    Code:
     
     .footer_top_container {
    display: none;
    }
     .footer_container {
    display: none;
    }
     .bottom_footer_container {
    display: none;
    } 
     
    This will hide the footer from all the pages.
     

Share This Page