Hi,
I am using auto suggest drop down menu..by using div tags and css.. below that i have navigation bar by using list items..
when i search in auto suggest the results are display behind the navigation bar...
what can i do....anyone help me ..
I am using auto suggest drop down menu..by using div tags and css.. below that i have navigation bar by using list items..
when i search in auto suggest the results are display behind the navigation bar...
what can i do....anyone help me ..
Code:
this is for auto suggest css
#auto li{padding:0; margin:0px 0px 0px 15px; border:0; list-style:none; position:absolute;}
and this for navigation section:
.groupItem .itemHeader
{
line-height: 23px;
background-color:#541C03;
color: #000;
padding: 0 0px;
font-weight: bold;
font-size: 16px;
height: 23px;
position: relative;
}
.groupItem .itemHeader a
{
position: absolute;
right: 30px;
top: 0px;
font-weight: normal;
font-size: 11px;
text-decoration: none;
}
.cross
{
position: absolute;
right: 10px;
top: 0px;
font-weight: bold;
font-size: 11px;
text-decoration: none;
cursor:pointer;
}
Comment