Hi, hope this will help you.
Basically, you should find something like this at the end of helper-template.php
echo "<div class='ajax_slide ajax_slide_".$id." twelve units' data-slide-id='".$id."' >";
echo "<div class='inner_slide'>";
echo "<div class='flex_column two_third first'>";
echo $data->slider;
echo "</div>";
echo "<div class='portfolio-entry one_third'>";
echo "<h1 class='ajax-portfolio-title'>".get_the_title()."</h1>";
echo "<div class='entry-content'>";
$meta = avia_portfolio_meta($id);
if($meta)
{
echo avia_advanced_hr(false, 'small');
echo $meta;
}
echo avia_advanced_hr(false, 'small');
the_content(__('Read more →','avia_framework'));
echo "</div>";
echo "</div>";
echo "</div>";
echo "</div>";
die();
}
}
And mine now looks like this:
echo "<div class='ajax_slide ajax_slide_".$id." twelve units' data-slide-id='".$id."' >";
echo "<div class='inner_slide'>";
echo "<div class='flex_column two_third first'>";
echo $data->slider;
echo "</div>";
echo "<div class='portfolio-entry one_third'>";
echo "<h2 class='ajax-portfolio-title'>".get_the_title()."</h2>";
echo "<div class='entry-content'>";
$meta = avia_portfolio_meta($id);
if($meta)
{
//echo avia_advanced_hr(false, 'small');
echo "<hr invisible>";
echo $meta;
}
echo avia_advanced_hr(false, 'small');
echo "</div>";
echo "</div>";
echo "<p><hr invisible></p>";
the_content(__('Read more →','avia_framework'));
echo avia_advanced_hr(false, 'small');
echo "</div>";
echo "</div>";
die();
}
}
I have just moved around the the_content(__('Read more →','avia_framework')); to place it outside the divs which are to the right of the image, also I´ve placed few dividers to get it a bit better.
Any question don´t hesitate, ask me, I´ll try my best :)