I have fixed it for you
I made a change in this file: /templates/yourtheme/html/com_content/featured/default_item.php
Replaced this code
[PHP]<div class=”col-sm-4″>
<?php echo JLayoutHelper::render(‘joomla.content.intro_image’, $this->item); ?></div>
<div class=”col-sm-8″>[/PHP]
with
[PHP]<?php if(trim(JLayoutHelper::render(‘joomla.content.intro_image’, $this->item)) ==”){
?>
<div class=”col-sm-12″>
<?php
}else{ ?>
<div class=”col-sm-4″>
<?php echo JLayoutHelper::render(‘joomla.content.intro_image’, $this->item); ?></div>
<div class=”col-sm-8″>
<?php } ?>[/PHP]