Hey,
I'm not sure if the following solution works - if not this modification may require some major code changes I can't provide here...
Open up includes/loop-search.php and replace:
$alternate = $smallcounter % 2 == 0 ? 'even' : 'odd';
with:
$alternate = $smallcounter % 3 == 0 ? 'even' : 'odd';
Open up search.php and replace:
<div class='container'>
<h1 class='overview_heading '><?php echo avia_which_archive(); ?></h1>
<div id='template-search' class='content'>
with:
<div class='container template-fullwidth'>
<h1 class='overview_heading '><?php echo avia_which_archive(); ?></h1>
<div id='template-search' class='content template-fullwidth'>
and delete:
get_sidebar();