• I’m having the oddest time trying to move a menu down.

    Here’s how I want it to look:
    http://proadvertise.com.au/ionec/

    Here’s how mine looks:
    http://www.i-one-c.com/

    Notice how the menu on the 1st link is bigger because the dark space comes down more. I took a look at the editor and there’s nothing in the .CSS except a link to author of the theme.

    Here’s the header php:
    ________________________________________________________________

    <!DOCTYPE html>
    <!--[if lt IE 7 ]><html class="ie ie6" <?php language_attributes(); ?>> <![endif]-->
    <!--[if IE 7 ]><html class="ie ie7" <?php language_attributes(); ?>> <![endif]-->
    <!--[if IE 8 ]><html class="ie ie8" <?php language_attributes(); ?>> <![endif]-->
    <!--[if (gte IE 9)|!(IE)]><!--><html <?php language_attributes(); ?>> <!--<![endif]-->
    <head>
    
    	<!-- Basic Page Needs
      	================================================== -->
    	<meta charset="<?php bloginfo( 'charset' ); ?>" />
    	<title><?php wp_title(azure_option('seo_separator', '|'), true, 'right'); ?></title>
    
    	<!--[if lt IE 9]>
    		<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
    	<![endif]-->
    
    	<!-- Mobile Specific Metas
      	================================================== -->
    	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    
    	<link rel="profile" href="http://gmpg.org/xfn/11" />
    	<link rel="shortcut icon" href="<?php azure_option('site_favicon', AZURE_IMAGES.'/favicon.ico', TRUE); ?>" type="image/x-icon" />
    	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    	<link rel="alternate" type="application/rss+xml" title="<?php bloginfo( 'name' ); ?>" href="<?php bloginfo( 'rss2_url' ); ?>" />
    	<link rel="alternate" type="application/atom+xml" title="<?php bloginfo( 'name' ); ?>" href="<?php bloginfo( 'atom_url' ); ?>" />
    
    	<?php wp_head(); ?> <?php /* this is used by many WordPress features and for plugins to work proporly */ ?>
    
    </head>
    
    <body <?php body_class(); ?>>
    
    <div id="azure-wrapper">
    
    	<!-- header -->
    	<header id="header">
    
    		<div class="container">
    
    			<div class="sixteen columns header-inner">
    
    				<div class="logo">
    					<a>" title="<?php bloginfo('name'); ?>"><img src="<?php azure_option('site_logo', AZURE_IMAGES.'/logo.png', TRUE); ?>" alt="<?php bloginfo('name'); ?>" /></a>
    				</div>
    
    				<nav id="main-nav">
    					<?php wp_nav_menu( array( 'menu_id' => 'nav', 'menu_class' => 'primary-menu', 'theme_location' => 'primary' ) ); ?>
    				</nav>
    
    			</div>
    
    		</div>
    
    	</header>
    	<!-- end header -->
    
    	<section id="pre-content">
    
    		<?php
    		if ( is_front_page() || is_page() )
    		{
    			$global_header = get_post_meta($post->ID, '_general_header', TRUE);
    
    			if ( !empty($global_header) ) {
    				get_template_part( 'framework/header/'.$global_header );
    			}
    			else {
    				get_template_part( 'framework/header/pagetitle' );
    			}
    		}
    		else
    		{
    			get_template_part( 'framework/header/pagetitle' );
    		}
    		?>
    
    	</section>

    [Please be sure to use the backticks or code buttons when posting code]
    ________________________________________________________________

    No matter what I do, I can not make that damn menu look like it does in the 1st link. Please help.

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Trouble moving theme menu down,’ is closed to new replies.