Hi,
Open footer.php and find this code,
<?php
//create the footer columns by iterating
$columns = avia_get_option('footer_columns');
$firstCol = 'first';
switch($columns)
{
case 1: $class = ''; break;
case 2: $class = 'one_half'; break;
case 3: $class = 'one_third'; break;
case 4: $class = 'one_fourth'; break;
case 5: $class = 'one_fifth'; break;
}
//display the footer widget that was defined at appearenace->widgets in the wordpress backend
//if no widget is defined display a dummy widget, located at the bottom of includes/register-widget-area.php
for ($i = 1; $i <= $columns; $i++)
{
echo "<div class='flex_column $class $firstCol'>";
if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer - column'.$i) ) : else : avia_dummy_widget($i); endif;
echo "</div>";
$firstCol = "";
}
?>
Assuming you want 4 columns in your footer. In this case you need to set it only to 3 columns because we are going to add another one. Below the snippet, add this code
<?php
echo "<div class='flex_column one_fourth first'>";
$args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
avia_social_media_icons($args);
echo "</div>";
?>
We use class one_fourth because we are going to have 4 columns. You can change that to one_half, one_third and one_fifth.
Regards,
Ismael