Removing Sign up and Blog on Home Page

Discussion in 'GoldenEagle WordPress Theme' started by landitollig, Feb 28, 2014.

  1. landitollig

    landitollig New Member

    Joined:
    Feb 15, 2013
    Messages:
    24
    Likes Received:
    0
    Good day,

    I am building a website on the Golden Eagle Template.

    On the Home Page there is a Sign up part/bar and a part below that where blog posts/widget shows.
    How do I remove both of these?

    I did make a static home page at set that right in my General Settings.

    I attached a screenshots. (1 is from the template. 2 is how mine looks at the moment.)

    Thank you!
    Landi
     

    Attached Files:

  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:
    .feature-strip {
    display: none;
    }
    .feature-blog {
    display: none;
    }
    .feature-bottom {
    display: none;
    } 
    This will solve your issue.
     
  3. taasvik

    taasvik New Member

    Joined:
    Mar 10, 2014
    Messages:
    3
    Likes Received:
    0
    Thank you, I used the same method to get rid of the top search button :) But I would like to get rid of the dashed line at the top as well - how do I do that?
     
  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.

    Code:
     .social-links {
    border-bottom: none;
    }
    
    This will remove the dashed line from the top.
     

Share This Page