Hi idavila,
you can move logo and navigation by adding this code to the style.css:
#main_navigation {
margin: 0 auto;
width: 500px;
font-size: 11px;
height: 40px;
position: static;
text-transform: uppercase;
}
#logo {
margin: 0 auto;
width: 200px;
font-size: 32px;
position: static;
}
500px must be the width of the navigation and 200px the width of the logo
For the sociables, you need to open up \wp-content\themes\infocus\header.php and paste your code with link+icons before the closing "inner div" (at line 95), like this:
</div><!-- main_navigation -->
<div class="socialContainer">
<a href="twitter_profile_url" class="socialLink"><img src="url_to_twitter_icon" alt="twitter" /></a>
<a href="facebook_profile_url" class="socialLink"><img src="url_to_facebook_icon" alt="facebook" /></a>
....
</div>
</div><!-- inner -->
Note the .socialContainer div and the class of "socialLink" added to the links, it will be useful later.
Once you have added the links, give us a link to your site and we will guide you on how to move them in the right position.