Hi Group I'm new fairly to CSS and I'm having some difficulties in
trying to position a CSS drop down menu
At the moment the menu shows vertically dow the side of the page, but
what I would like to do is make it run across the top.
here's the code in the .css file
ul li {
position: relative;
}
li ul {
position: absolute;
display: none;
left: 149px;
top: 0px;
}
ul li a {
display: block;
text-decoration: none;
color: #777;
background: #fff;
padding: 5px;
border: 1px solid #ccc;
border-bottom: 0;
}
ul {
margin: 0;
padding: 0;
list-style: none;
width: 150px;
border-bottom: 1px solid #ccc;
left: 150px;
top: 0px;
}
li:hover ul, li.over ul {
display: block; }
I've tried changing some of the attributes but no joy
any suggestions?
Thanx in advance