View Single Post
  #2 (permalink)  
Old 04-02-09, 05:41 PM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,515
Thanks: 20
Thanked 109 Times in 106 Posts
Many sites place an HTML version of menu navigation at the bottom of the screen.

I would use CSS, with links, and title tags.

Not tested.

Code:
a.menu
{
width:100px;
height:25px;
background: transparent url(image.gif) repeat-x;
}
a#aPage:hover /* Not sure on the syntax */
{
background-image: url(page_image.gif);
}

<a href="page.html" class="menu" title="Page" id="aPage"></a>
You could also look into 'sprites' - placing all the navigation images in a single image (like a bar), then adjust the offset point.

http://css-tricks.com/css-sprites-wh...w-to-use-them/
http://www.askapache.com/css/css-bac...ge-sprite.html

Last edited by wirehopper; 04-02-09 at 05:43 PM.
Reply With Quote