Removing Homepage Features & Footer

Discussion in 'GoldenEagle WordPress Theme' started by pupwild, Apr 3, 2013.

  1. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    How would I remove the homepage features & footer?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .feature-box.gallery {
    display: none;
    }
    .feature-content {
    padding-top: 0px;
    }
    .feature-strip {
    margin-top: 0px;
    }
    .footer {
    display: none;
    }
    This will solve your issue.
     
  3. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    As you can see there is a little left over white box at the bottom. How would I remove that?
     

    Attached Files:

  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  5. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .feature-content {
    display: none;
    }
     

Share This Page