Just started using this and have searched for css style sheet code edits that work, yet have found nothing. I did find out that the small space to the left of the menu is dedicated to the Head Logo, which I am not using there.
I am using ThemeForest's Breeze Theme.
Site is found HERE
Header.php has this within it, identifying the logo and menu nav, but I am unsure how to alter it.
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum's parser. ]
<!--BEGIN #header-->
<div id="header">
<!--BEGIN #logo-->
<div id="logo">
<a>" title="<?php bloginfo( 'name' ); ?>">
<?php if( $unisphere_options['logo'] != " ") : ?>
<img src="<?php echo $unisphere_options['logo'] ?>" alt="<?php bloginfo( 'name' ) ?>" />
<?php else : ?>
<?php bloginfo( 'name' ) ?>
<?php endif; ?>
</a>
<!--END #logo-->
</div>
<?php if ( function_exists('wp_nav_menu') ) { // if 3.0 menus exist
wp_nav_menu( array(
'show_home' => '0',
'sort_column' => 'menu_order',
'container_class' => 'menu rounded-all',
'menu_class' => 'nav',
'theme_location' => 'header_menu',
'fallback_cb' => 'unisphere_header_navigation'
) );
} else {
wp_page_menu( 'show_home=0&sort_column=menu_order&menu_class=menu rounded-all' );
} ?>
<!--END #header-->
</div>