Nav bar not showing up

Hey, this is a wordpress site. Premium theme, but the support is terrible.

Here’s the site in question:

Sound Delights | full service music production and audio post production

This is what I can edit:

<div class="grid_11">
    <?php wp_nav_menu( array( 'container_id' => 'topmenu', 'theme_location' => 'topmenu' ) ); ?>
  </div>

which is translating to:

<div class="grid_11">

    <div class="menu"><ul><li class="current_page_item"><a href="http://soundelights.com/" title="Home">Home</a></li><li class="page_item page-item-2">

Missing the nav bar up top (off a fresh install).

Here’s what it’s supposed to look like:

Love Feast | The Online Banquet

This is off their source code:

<div class="grid_11">
    <div id="topmenu" class="menu-main-nav-container"><ul id="menu-main-nav" class="menu">

I can’t figure out what’s wrong.

Any help appreciated

got rid of it but can’t see a difference yet

At the moment you have

.container_16 .grid_11 {
  [COLOR="Red"]visibility: hidden;[/COLOR]
  width: 640px;
}

on general.css, line 2 ff. Don’t know if that’s the whole story, but see what happens if you get rid of visibility: hidden first.

The nav items are there, but they are using position:absolute and being put to 999px above where they should be. Check out menu.ul on line 64 of general.css.

I’m guessing it’s an attempted JS page effect gone wrong.

Yeah, you’re right. I removed that line and it shows up, but mangled.

Where would I begin to look at fixing the JS?

thanks

Please try code see if it helps

<div class=“grid_11”>

&lt;div class="menu"&gt;

<ul>
<li class=“current_page_item”><a href=“http://soundelights.com/” title=“Home”>Home</a></li>
<li class=“page_item page-item-2”><a href=“http://soundelights.com/” title=“Home”>Home</a></li>
</ul>
</div>
</div>

This is the only part I can edit:

<div class="grid_11">
    <?php wp_nav_menu( array( 'container_id' => 'topmenu', 'theme_location' => 'topmenu' ) ); ?>
  </div>

How would I make your changes in this?

Anyone got a clue how to solve this… my nav bar is totally messed…

Try removing the two lines in red:

.menu ul {
  position: absolute;
  top: 0;
  [COLOR="Red"]width: 10em;[/COLOR]
}

.menu ul li {
  [COLOR="Red"]width: 100%;[/COLOR]
}

Ralph, thank you.

Thanks everyone.