Remove Feature Content on Home Page

Discussion in 'GoldenEagle WordPress Theme' started by ddrovdlic, Nov 16, 2013.

  1. ddrovdlic

    ddrovdlic New Member

    Joined:
    May 13, 2013
    Messages:
    19
    Likes Received:
    0
    Could you please explain how I can remove the feature content on the home page and put the content I want on that page? I am planning on a full width page with just two columns of text. I want to keep the slider.

    Thanks!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to front-page.php present in your theme directory and remove the code from line no. 158 to 335

    and add your text there.

    Sending image for reference

    2013-11-18_1155.png
     
  3. ddrovdlic

    ddrovdlic New Member

    Joined:
    May 13, 2013
    Messages:
    19
    Likes Received:
    0
    Thank you Gourav. The problem that I have encountered with doing it that way is that I can't have 2 columns of text on the page. Is there any way to do this?

    Thanks,
    Deb
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to front-page.php present in your theme directory and add the code given below

    Code:
    <div class="eight columns alpha">
    <div class="content-feature-one">
    <p>Enter Your Text Here</p>
    </div></div>
    <div class="eight columns omega">
    <div class="content-feature-two">
    <p>Enter Your Text Here</p>
    </div>
    </div>
    Sending image for reference

    2013-11-19_1250.png


    Now,


    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-feature-two p {
    padding: 5px;
    }
    .content-feature-one p {
    padding: 5px;
    }
    This will solve your issue.
     

Share This Page