How to set transparent dropdown menu?
Posted by: Amit Nazare on: January 22, 2009
If you looking for the transparent background for your drop down menu, either it might be for vertical menu or for horizontal menu. This is how you can get it done
#menu{
background-color:green;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50); // for IE
opacity:0.5; // rest all browsers
}
Like this:
Be the first to like this post.