Hi Zackmoon
First create a child theme of wenlizar theme. Using child theme creator plugin.
Copy the front-page.php file from parent theme and paste in child theme.
You already customize the home page.but You need to edit some line of code.
Remove the last service section:
<div class=”col-md-3 col-sm-3″>
<div class=”content-box content-style2 anim-opacity animated fadeIn animatedVisi” data-animtype=”fadeIn” data-animrepeat=”0″ data-animspeed=”1s” data-animdelay=”0.2s” style=”-webkit-animation: 1s 0.2s;”>
<?php if($wl_theme_options[‘service_4_title’]) { ?>
<h4 class=”h4-body-title”><i class=”<?php if($wl_theme_options[‘service_4_icons’]) { echo $wl_theme_options[‘service_4_icons’]; } ?>”></i><?php echo $wl_theme_options[‘service_4_title’]; ?></h4>
<?php } ?>
<div class=”content-box-text”>
<?php if($wl_theme_options[‘service_4_text’]) { echo $wl_theme_options[‘service_4_text’]; } ?>
<div>” class=”read-more “><span><?php _e(‘read more’, ‘weblizar’); ?></span></div>
</div>
</div>
</div>
Find the given code in front-page.php
col-md-3
Replace by
col-md-4
Save the changes and activate the child theme.
Thanks