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!
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
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
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 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.