Wordpress PHP HELP! Adding space Floating Menu!?

GT4

New member
I need to add a little more space between the navigation menu and the header sm1 help heres my code
<div id="wrapper">
<div id="contents">

<div style="position:fixed;top:0px;right:135px;left:0px;"><div class="header-menu-wrapper clearfix">
<div id="pngfix-right"></div>
<?php if($options['use_wp_nav_menu']) { ?>
<?php if (function_exists('wp_nav_menu')) { wp_nav_menu( array( 'sort_column' => 'menu_order') ); }; ?>
<?php } else { ?>
<ul class="menu">
<li class="<?php if (!is_paged() && is_home()) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>/"><?php _e('HOME','piano-black'); ?></a></li>
<?php
if($options['header_menu_type'] == 'pages') {
wp_list_pages('sort_column=menu_order&depth=0&title_li=&exclude=' . $options['exclude_pages']);
} else {
wp_list_categories('depth=0&title_li=&exclude=' . $options['exclude_category']);
}
?>
</ul>
<?php }; ?>
<div id="pngfix-left"></div>
</div>
</div>

<div id="header">

<?php if ($options['use_logo']) : ?>
<div id="logo_image">
<h1><a href="<?php echo get_option('home'); ?>/"><img src="<?php bloginfo('template_url'); ?>/img/<?php echo $options['logo_name']; ?>" title="<?php bloginfo('name'); ?>" alt="<?php bloginfo('name'); ?>" /></a></h1>
</div>
<?php else : ?>
<div id="logo">
<a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a>
<h1><?php bloginfo('description'); ?></h1>
</div>
<?php endif; ?>

<div id="header_meta">

if u scroll u will notice that the navigation menu is floating the header and the menu got mixed when i did this
( http://spotcampus.com/)
 
Back
Top