• Resolved topax

    (@topax)


    Hello everybody from Italy.
    I recently installed the new release of WP.
    I found a very nice template and everything was ok since I saw there are some problems with the navigation bar near the logo.
    Every page I created is visible inside this bar and the links cover the logo.
    Is there a way to limit the number of links into 4-5 instead of showing them all?
    Thanks,

    Topax

Viewing 4 replies - 1 through 4 (of 4 total)
  • Yeah, create your own menu. It’s probably an unordered list you can put your own list items in.

    Peter

    Thread Starter topax

    (@topax)

    thanks Peter,
    I’m a real newb to WP.
    Could you please tell me HOW I can create my own menu?
    Thanks

    In the header.php file in the theme folder there will be a bit of code that says <?php wp_list_pages() ?>

    Replace this with your own menu written in plain html

    e.g.

    <ul>
    <li><a href="<?php bloginfo('url') ?>">home</a></li>
    <li><a href="...">next item</a></li>
    ...
    </ul>

    remember to give all the list tags the appropriate id and class names so they will be styled correctly from the theme’s css file.

    You can find out the id and class names by viewing the source of your blog in your browser

    Thread Starter topax

    (@topax)

    THANKS!!!!!!!!!!!
    it works properly

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

The topic ‘Navigation bar – delete links’ is closed to new replies.