yanivkalfa Posted January 30, 2008 Share Posted January 30, 2008 well i am trying to make a transperate thumbains - i do know how to do the thumbains but dont know how to make a pic look transperated . Look : in this site when you click on pick the backgroun become transperanted gray : http://www.wow-europe.com/en/contests/logitech/ and in this site when you hover over the links in table the backgroun become transperated blue: http://www.wowhead.com/?items=2.2 this is hard to do i know but looking for it for hours now. Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted January 30, 2008 Share Posted January 30, 2008 you can do this with css: <style type="text/css"> #content { filter:alpha(opacity=75); -moz-opacity:0.75; border:solid 1px black; background:#000000; width:300px; height:225px; } </style> <div id="content"> </div> Quote Link to comment Share on other sites More sharing options...
yanivkalfa Posted January 31, 2008 Author Share Posted January 31, 2008 as i remmber Alpha works only with Explorer right ? Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted January 31, 2008 Share Posted January 31, 2008 Not 100% sure about that; -moz-opacity works in FF. You would need to test alpha in other browsers; I know it will not work in FF, because filter was depreciated. Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted January 31, 2008 Share Posted January 31, 2008 Also here is a few more css styles for opacity for other browsers: http://css-tricks.com/css-transparency-settings-for-all-broswers/ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.