Link to home
Start Free TrialLog in
Avatar of Vinni
VinniFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Auto Complete Extender Showing a Bullet point in Mozilla

Hello Guys
I am using an Ajax Auto complete extender, on my textbox. where i am reteriving the values from database.
Every thing is working Fine, Except the look of autocomplete list. I am able to see bullets point in front of my suggestions, when i run the application on Mozilla.(Its working fine in IE)
Is there any way i can get rid of that bullets points please.
My css


Thanks

.autocompletelist
{
	
	background-color: #FFFFFF;
	color:Black;
	font-weight:bold;
	/*font-family: Verdana;
	font-size: small;
	font-style: normal;
	font-weight: bold;
	word-spacing: normal;*/
	
	
}
.autocomplete_itemclass
{
	font-size: small; 
    font-weight: bold; 
}
.autocomplete_selected
{
	background-color: #003366;
	cursor: auto;
	color: #FFFFFF;
}

Open in new window

Avatar of Roshan Davis
Roshan Davis
Flag of United States of America image

Avatar of Vinni

ASKER

This link looks too advanced to me,
Actually my autocomplete works fine on IE, but i only have the problem with Mozilla, i want to get rid of Bullet points in front of my autocomplete list.

Please Help
Thanks
can you try "-moz-appearance: none;" ?

.autocompletelist
{
        -moz-appearance: none;
        background-color: #FFFFFF;
        color:Black;
        font-weight:bold;
}
Avatar of Vinni

ASKER

Hello
Thanks for your reply
But its still coming

ASKER CERTIFIED SOLUTION
Avatar of Roshan Davis
Roshan Davis
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Vinni

ASKER

Thanks a lot..

Its working now..
Thanks again..