A little CSS help please! Replacing Tables with CSS.

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

dcdomain

Diamond Member
Jan 30, 2000
5,158
0
71
Oh yeah... that part I understood. What I am surprised at is the fact that I didn't have to change the name of the other MENU attributes in the style sheet. I basically changed the first one, but for hover and active, I didn't need to, but the effects still worked.
 

dcdomain

Diamond Member
Jan 30, 2000
5,158
0
71
Back with more questions...

In my style sheet for another site, I'm reusing (with some modifications) the class for the menu links:

#pipe ul {
background-image: none;
margin: 0px;
float: right;
width: 625px;
position: absolute;
top: 80px;
height: 15px;
margin-left: 0;
padding-left: 0;
display: inline;
}

#pipe ul li {
margin-left: 0;
padding: 3px 5px;
border-left: 1px solid #cccccc;
list-style: none;
display: inline;
}

The problem is, I can't get it to align right, even though I'm telling it to float right. I tried messing with the position tag, but that didn't help either, when I changed it to fixed/static it would go right, but it would not over lay the other layers (which makes sense).

Page with the problem

Style sheet

Any help would be appreciated. Thanks!