Javascript drop menu help

PixelPusher

Super Moderator
Staff member
First of all I hate these pre-built menus...the code is atrocious, but i digress. In answer to your question the white space is coming from a background image. See below.
Code:
background: url("http://www.webdesignforum.com/images/plus_sub.gif");

(the image may be broken, not sure though)
 

bcee

New Member
Holy code soup!

background: none; or set the background color to the menu background color.

Also you shouldn't need JS for a drop down menu, look into a CSS one.
 

smoovo

New Member
Just replace this line

HTML:
#qm0 div .qmparent{background-image:url("images/plus_sub.gif");color:#B65560;}

With this

HTML:
#qm0 div .qmparent{color:#B65560;}


I hope it will help.
 
Top