There is a grey line that surrounds my menu java. How do I get rid of the grey line
Return to Recent Questions
Q:
There is a grey line that surrounds my menu (its on a page with black
background. How do I get rid of the grey line?
A:
See, you set the shadow for the top items and submenus
var shadowLen=2;
var shadowColor="#C4C4C4";
var shadowTop=1;
You should set
var shadowLen=0;
var shadowColor="#C4C4C4";
var shadowTop=0;
Return to Recent Questions
|