• Hi guys my site: https://www.smashmyiphone3g.com
    does not have top navigation. What i mean is, it says Home but there should also be an About page. I created a few pages and published them but they do not show up. I’m sure the other features of the theme I’m using are set to show this. Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Which theme is it your using?

    Check to see in the CSS file that the top navbar is set to display inline!

    You could try to replace the ul you have now with this

    <ul id=”navbar”>
    <?php wp_list_pages(‘title_li=’); ?>
    < / ul>

    CSS should look like

    ul#navbar {
    float: left;
    }

    ul#navbar li {
    float: left;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to get navigation workiing on top?’ is closed to new replies.