fatto! per il momento mi sta bene così dai..right a 230px :')

ora però mi piacerebbe mettere a fianco al menù, le iconcine dei social..come posso fare secondo te?

!-- _________________________ Start Navigation _________________________ -->
<nav>
<?php
if (has_nav_menu('primary')) {
wp_nav_menu(array(
'theme_location' => 'primary',
'container' => false,
'menu_id' => 'navigation',
'menu_class' => 'navigation',
'link_before' => '<span>',
'link_after' => '</span>'
));

wp_nav_menu(array(
'theme_location' => 'primary',
'container' => false,
'menu_id' => 'resp_navigation',
'menu_class' => 'resp_navigation',
'items_wrap' => '<select id="%1$s" class="%2$s"><option value="" selected="selected"> - - ' . __('Navigate to...', 'cmsmasters') . ' - - </option>%3$s</select>',
'walker' => new Nav_Select()
));
} else {
echo '<ul id="navigation">';

wp_list_pages(array(
'title_li' => '',
'link_before' => '<span>',
'link_after' => '</span>'
));

echo '</ul>';

wp_dropdown_pages('name=resp_navigation'); }
?>
</nav>
questo è il "nav" dell'header.php devo inserire questa stringa:

<?php if (function_exists("DISPLAY_ACURAX_ICONS")) { DISPLAY_ACURAX_ICONS(); } ?>