Page 1 of 1

Wordpress Editing

Posted: Wed Aug 16, 2006 6:34 pm
by DiscoDave
Hi everyone,

I know we have quite a few HTML experts on the board so I would appreciate some help. I've got a theme that has this navbar at the top:

Image

Now I want to edit these links but cant do it through the wordpress dashboard.

I've located a header php file which has this in:

Code: Select all

<div id="container">

	<div id="header">
		<h1><?php bloginfo('name'); ?></h1>
		<h2><?php bloginfo('description'); ?></h2>
	</div>
	<div id="menu">
		<div id="navcontainer">
			<ul id="navlist">
				<li><a title="link six" href="#">link six</a></li>
				<li><a title="link five" href="#">link five</a></li>
				<li><a title="link four" href="#">link four</a></li>
				<li><a title="link three" href="#">link three</a></li>
				<li><a title="link two" href="#">link two</a></li>
				<li><a title="link one" href="#">link one</a></li>
			</ul>
		</div>
	</div>
	
	<div id="image">

	</div>

</div>
Can someone please help me alter this so I can link them up to whatever pages I want.

Cheers in advance.

Posted: Wed Aug 16, 2006 6:35 pm
by Fender
just change href="#" to the desired URL

Posted: Wed Aug 16, 2006 6:43 pm
by DiscoDave
Ah excellent, cheers Fender

Posted: Wed Aug 16, 2006 7:31 pm
by MKJ
that is, leave the href=" and closing ", and replace the # with the url :icon32: