Ok, I am starting this new site using a WP template. I can create pages (HOME and ABOUT are there by default). I just created a new page called FORUM and I want the button to link elsewhere, is it possible to do? Let's say I have a site www.xyz.com, I create a page called Forum and I want users to be taken to www.xyz.com/forum when they click on it. How do I do it? Thanks
I think you'd have to insert that link manually. Also, it would have to point to your vBulletin/phpBB/whatever home page. It will be tricky to do if you have one of those auto-updating menus. I'm assuming that your menu is wrapped in those <ul> tags - try putting in your forum link before the ending </ul> and see if that works!
markn - thanks for the reply but you lost me Here is my site: ihearteuro.com, you can see the FORUM button there, I want to link it to http://www.ihearteuro.com/forum/index.php ... my phpBB forum... I would even I am not sure which part of the template I should modify ;(
You'll have to edit your header.php. Look for a line like: <?php wp_list_pages('title_li='); ?> Code (markup): In its place you'll have to maually add your links. <li><a href="http://ihearteuro.com/">Home</a></li> <li><a href="http://ihearteuro.com/?page_id=2">About</a></li> <li><a href="http://ihearteuro.com/forum_link_here">Forums</a></li> Code (markup):