Wordpress Editing

Open discussion about any topic, as long as you abide by the rules of course!
Post Reply
DiscoDave
Posts: 1645
Joined: Wed Feb 09, 2005 4:33 pm

Wordpress Editing

Post 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.
Fender
Posts: 5876
Joined: Sun Jan 14, 2001 8:00 am

Post by Fender »

just change href="#" to the desired URL
DiscoDave
Posts: 1645
Joined: Wed Feb 09, 2005 4:33 pm

Post by DiscoDave »

Ah excellent, cheers Fender
User avatar
MKJ
Posts: 32582
Joined: Fri Nov 24, 2000 8:00 am

Post by MKJ »

that is, leave the href=" and closing ", and replace the # with the url :icon32:
[url=http://profile.mygamercard.net/Emka+Jee][img]http://card.mygamercard.net/sig/Emka+Jee.jpg[/img][/url]
Post Reply