Thanks for taking a look.
I've changed the <div>s to <li>s, and made what I thought were the right css changes, but that is not working.
You can see it at the dev link http://u.univers.net.au
The relevant css is this...
/* floats */
#logo, #image, #nav, .dotsmall, .dotlarge, .dotspace, .dotactive, .dotline, #contact, #credits, #email {
position:relative;
float:left;
}
/* Postions */
#logo {
width:560px;
height:39px;
}
#image {
width:560px; /* note: actual image is 515px wide */
height:204px;
}
#nav {
width:560px;
height:300px;
}
#nav ul {
margin:0px;
padding:0px;
position:relative;
width:100%;
}
#nav ul li {
display:inline;
float:left;
}
#nav ul ul {
position:absolute;
left:-93px;
display:none;
z-index:100;
}
#nav ul ul li {
width:560px;
}
#contact a:hover {
display:block;
}
#contact, #credits, #email{
width:93px;
height:93px;
position:relative;
z-index:1000;
cursor  ointer;
background: #000 url('images/dot_large.gif') no-repeat center;
}
.dotsmall, .dotlarge, .dotspace, .dotline, .dotactive{
width:93px;
height:93px;
}
.dotsmall {
background: #000 url('images/dot_small.gif') no-repeat center;
}
.dotlarge {
background: #000 url('images/dot_large.gif') no-repeat center;
}
.dotline {
background: #000 url('images/dot_large_line.gif') no-repeat center;
}
Last edited by akzidenz; 06-04-2009 at 11:22 PM..
Reason: Updated reply
|