Hi,
1) You can add this to your style.css
.footer-logos{display:none;}
Or you can remove the following code from your footer.php
if(is_front_page() || avia_get_option('footer_logo_where') == 'everywhere')
$attachment_holder = avia_get_post_by_title( "avia_smart-logo-gallery");
if(!empty($attachment_holder['ID']))
{
$attachments = get_children(array('post_parent' => $attachment_holder['ID'],
'post_status' => 'inherit',
'post_type' => 'attachment',
'post_mime_type' => 'image',
'order' => 'ASC',
'orderby' => 'menu_order ID'));
if(is_array($attachments))
{
echo "<div class='footer-logos'><div class='container'>";
foreach($attachments as $key => $attachment)
{
echo avia_image_by_id($attachment->ID);
}
echo "</div></div>";
}
}
2) I'm not sure what you did with your footer but adding this should solve it somewhat:
.home #search-3 {
margin-left: -10px;
}
.home #search-3 h3 {
margin-left: 10px;
}
.home #socket .container {
padding: 10px;
width: 930px ! important;
}
.home .first #recent-posts-3 {
margin-left: 15px;
}