Hi,
Would you be able to tell me how to add a border around the left, right and bottom of this newly added drop down.
I tried using this:
#nav ul ul{
display:none;
position:absolute;
top:100%;
left:0;
float:left;
z-index:99999;
background: #bed73b;
border-left:#63a600;
border-right:#63a600;
border-bottom:#63a600;
border-width:3px;
}
#nav ul ul ul{
top: 30%;
left:100%;
background: #bed73b;
border-left:#63a600;
border-right:#63a600;
border-bottom:#63a600;
border-width:3px;
}
but it didn’t work.
Thanks,
B