Removing an area

Discussion in 'GoldenEagle WordPress Theme' started by bernz, Mar 17, 2013.

  1. bernz

    bernz Guest

    Joined:
    Dec 28, 2011
    Messages:
    49
    Likes Received:
    1
    I would like to remove the area under the Home Page Button Area. The are starts with,"
    Bottom Feature Start From Here.


    Everything under it?
    Also if I would later like to add my face book or any other social media in that area what would I add in its place to do so?

    Thank you,

    Ben
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Please specify your issue more clearly with the help of screenshot images that which section you want to remove and in which section you want to do something.
     
  3. bernz

    bernz Guest

    Joined:
    Dec 28, 2011
    Messages:
    49
    Likes Received:
    1
    Hi Piyus,

    In the attached file the area circled in red I would like to remove, please let me know if this helps.

    Thanks.
     

    Attached Files:

  4. 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-bottom {
    display: none;
    }
    This will solve your issue.
     
  5. bernz3

    bernz3 Member

    Joined:
    Feb 18, 2012
    Messages:
    56
    Likes Received:
    0
    Hi Guys,

    Also how do I remove the
    Homepage Feature Area all, and just for my info one or two of the boxes.

    Thank you
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .feature-box.gallery {
    display: none;
    }
    2.For removing first feature box

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .feature-content .feature-box-inner.first {
    display: none;
    }
     

Share This Page