Is it possible to remove/disable the 4th feature on the home page? http://columbiagorgelandscape.com/
Go to the front-page.php file present in the theme directory and remove the code given below from the line number 412 to line number 431. Code: <div class="feature-item"> <!--<div class="feature-item">--> <?php if (inkthemes_get_option('inkthemes_featureimg4') != '') { ?> <img class="imgicon" src="<?php echo inkthemes_get_option('inkthemes_featureimg4'); ?>"/> <?php } else { ?> <img class="imgicon" src="<?php echo get_template_directory_uri(); ?>/images/feature-img4.png"/> <?php } ?> <?php if (inkthemes_get_option('inkthemes_fourthhead') != '') { ?> <h6><?php echo stripslashes(inkthemes_get_option('inkthemes_fourthhead')); ?></h6> <?php } else { ?> <h6>10 Minutes on a brand Wordpress Install.</h6> <?php } ?> <?php if (inkthemes_get_option('inkthemes_fourthdesc') != '') { ?> <p><?php echo stripslashes(inkthemes_get_option('inkthemes_fourthdesc')); ?></p> <?php } else { ?> <p>Than 10 Minutes on a brand new Spanking Wordpress Install. And the best part is Wordpress "Geek or Guru" to Configure, Tweak and Setup your Websites with InkThemes.</p> <?php } ?> <!-- </div>--> </div> For the reference see the image given below. This will solve your issue.