Hello below is the code for the css roll over menu i am working . How can i get it to go on the page horrizontal?
THANKS SO MUCH!
Here is the CSS:
list-menu {
width: 132px;
display: inline;
}
#list-menu ul {
position:fixed;
display: inline;
margin: 0;
padding: 0;
list-style-type: none;
}
#list-menu li {
display: block;
margin: 2px 0 0;
}
#list-menu a {
display: inline;
width:200px;
height:25px;
padding: 2px 2px 2px 10px;
border: 1px solid #000000;
background: red;
text-decoration: none; /*lets remove the link underlines*/
}
#list-menu a:link, #list-menu a:active, #list-menu a:visited {
color: #000000;
}
#list-menu a:hover {
border: 1px solid #000000;
background: blue;
color: black;
}
Here is the Code for the index page:
(1) You don't need a div...you didn't close it, in your example, anyway, and you didn't close the ul and the last li...maybe Yahoo! didn't let you?
(2) ...to continue on (1), just use
assign the list an is or class, something unique, and make the display:inline;
2007-11-20 08:55:00
·
answer #2
·
answered by Anonymous
·
0⤊
1⤋