Link to home
Start Free TrialLog in
Avatar of pixellight1
pixellight1

asked on

css coding for semi-transparent drop down menu

using the following code to try and get a semi-transparent drop down menu (drop down originally created in Fireworks and then imported webpage into Dreamweaver). No matter what I do the dropdown is COMPLETELY transparent. Working on Mac and testing in Safari and Firefox.

Thank you.


#MMMenuContainer0627152508_1 a {
/* Controls the general apperance for menu MMMenuContainer0627152508_1's items, including color and font */
      text-decoration:none;
      font-family:Verdana, Arial, Helvetica, sans-serif;
      font-size:12px;
      color:#ff0000;
      text-align:left;
      vertical-align:middle;
      padding:3px;
      background-color:#ffffff, filter:alpha(opacity=40);opacity: .4;-moz-opacity: .4;
      font-weight:normal;
      font-style:normal;
      display:block;
      position:absolute;
}
Avatar of VirusMinus
VirusMinus
Flag of Australia image

try opacity:0.4 instead of .4

and try a color other than white to make sure.
Give the element that you're applying the filter to a css height or width.
ASKER CERTIFIED SOLUTION
Avatar of pixellight1
pixellight1

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
Closed, 500 points refunded.
Vee_Mod
Community Support Moderator