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:

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>
Cheers in advance.