Help with nav links on image!

Associate
Joined
18 Mar 2004
Posts
793
Location
u.k
Hi all,

Need some help, I have created a image for my header, but want to put links onto the image buttons that are part of the main image, is their a way of doing this without using the map function you all seem to hate :) ?

Or should I create the links in the image program

Help

Im using a css for most of the main coding.

Please dont flame me im trying to learn.

Thanks
 
Last edited:
Navigation links should be seperate to the header, in their own element.

The semantic way of doing menus, is to use an unordered list.
Code:
<ul id="menu">
  <li class="nav"><a href="" title="">Home</a></li>
  <li class="nav"><a href="" title="">About</a></li>
  <li class="nav"><a href="" title="">Links</a></li>
  <li class="nav"><a href="" title="">Contact</a></li>
</ul>

You then style the <ul> and <li> and <a> elements as you see fit using the CSS.
 
Back
Top Bottom