Hi nice folks.
I have a drop down menu displaying my pages, however I want it to expand to the right to show the child pages of the pages listed.
At the moment I have
Pages > subpages (gos directly beneath the parent page in a drop down menu)
I want now to show Pages > Subpages > Subpages (to go to the right of the child page on the drop down)
Basically like the menu does on
www.wolverley.worcs.sch.ukIm just a bit confused as to how to style it in CSS to happen!
.menu {
border:none;
border:0px;
margin:0px;
padding:0px;
padding-top:11px;
font: 67.5% 'Verdana', Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
}
.menu ul {
height:30px;
list-style:none;
margin:0;
padding:0;
}
.menu li {
float:left;
padding:0px;
}
.menu li a {
color:#000;
display:block;
font-weight:normal;
line-height:31px;
margin:0px;
padding:0px 15px;
text-align:center;
text-decoration:none;
border-right: 1px solid #ddc598;
}
.menu li a:hover, .menu ul li:hover a {
background: #CD9F51;
color:#FFFFFF;
text-decoration:none;
}
.menu li ul {
background:#333333;
display:none;
height:auto;
padding:0px;
margin:0px;
border:0px;
position:absolute;
width:225px;
z-index:200;/*top:1em;
/*left:0;*/
}
.menu li:hover ul {
display:block;
}
.menu li li {
display:block;
float:none;
margin:0px;
padding:0px;
width:225px;
}
.menu li:hover li a {
background:none;
}
.menu li ul a {
display:block;
height:35px;
font-size:10px;
font-style:normal;
margin:0px;
padding:0px 7px 0px 7px;
text-align:left;
}
.menu li ul a:hover, .menu li ul li:hover a {
background:#CD9F51;
border:0px;
color:#ffffff;
text-decoration:none;
}
.menu p {
clear:left;
}