|
i have a dropdown menu and its background color is #ccc
i need this color to appear as transparent so it set opacity: 0.8; and filter:alpha(opacity=80); for ie
the font is bold for the list items in the dropdown by adding filter:alpha(opacity=80); only in ie the font weight has become normal and is not bold
how to fix this
also after the last list item in the drop down menu i need a rounded corner image so i created a rounded corner image and set the image opacity as 80% and added as
<li style="display: block; float: left; width: 177px; height: 9px; background: url('images/rcorner.png') no-repeat top left;"> </li>
when i tried
<div style="float: left; width: 177px; height: 9px; background: url('images/rcorner.png') no-repeat top left;"> </div> the rounded corner image did not appear
how to get the rounded corner image with same opacity color as the background of the dropdown menu
|