Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.70K
1 Posted Topic
Give a id to the background image you want to adjust opacity. Following code works for me **CSS code** #image{ opacity:0.3; filter:alpha(opacity=30); } #image:hover{ opacity:0.7; filter:alpha(opacity=70); } where image is is id for the background image **HTML Code** <ul> <li style="background-image:url('path');height:60px;" id="image"></li> <ul>
The End.
ashishkumar_bhi