Span?

  • Thread starter Thread starter Paul C
  • Start date Start date
P

Paul C

Hi
I am using rollover images to create a horizontal navigation structure. Is
it best to have each image in its own cell or us a span attribute, ie no
cells

You can see an image representing the page here, it is the top navigation I
am talking about
http://www.ingenious-group.com/gbwraweb.htm
Thanks
Paul M
 
A table would be good, or you could use a list, eg
#menu{
list-style:none;
margin:0;
padding:0;
}
#menu li{
float:left;
}
<ul id="menu">
<li>...your image </li>
<li>...your image </li>
etc

I'd probably use the list - mess around with the CSS to get the look you
want.

Jon
 
Thanks Guys
I am trying to make the page cross browser compatable as per the usual
Paul M
 
Back
Top