Hi,
Sorry for the delay.
Ok this is the CSS you will need to add. The way I measured it , the distance between columns will be cut to 3% (please don't use pixels since its responsive) , the first four columns will be 13% each and the fifth column will be 33%. You can change the numbers yourself ofcourse.
#top div .one_fifth {
margin-left: 3%;
}
#top .flex_column.one_fifth.colwidth-1, #top .flex_column.one_fifth.colwidth-2, #top .flex_column.one_fifth.colwidth-3, #top .flex_column.one_fifth.colwidth-4 {
width:13% !important;
}
#top .flex_column.one_fifth.colwidth-5{
width:33% !important
}
Now please open up footer.php and find line 45 which looks like
echo "<div class='flex_column $class $firstCol'>";
and change it to
echo "<div class='flex_column $class colwidth-$i $firstCol'>";
That's it.
Thanks,
Nick