ruffian
Not New Member
Posts: 1
ruffian said 0 great things
|
Post by ruffian on Sept 5, 2011 16:04:01 GMT -8
Hello (:
I have a quick question, I apologize if I'm posting in the wrong area! I'm using a code right now that automatically changed the opacity of all the images on the site, unless you rollover it with your mouse. I'm wondering if there's anyway to make just the logo image not be effected by the code, so it is at 100% opacity all the time.
The code I'm currently using is:
<style type="text/css"> <!-- img { opacity: 0.8; filter:alpha(opacity=60); } .imgRO { opacity: 1.0; filter:alpha(opacity=100); } --> </style>
<script type="text/javascript"> <!-- // Unfade images on mouseover.. var piccies = document.images; for(p=0; p<piccies.length; p++) { piccies[p].onmouseover = function(){this.className = 'imgRO';} piccies[p].onmouseout = function(){this.className = '';} } // --> </script>
Here's my forum if it helps at all: angelislandroleplay.proboards.com/index.cgi
Thanks in advance!
|
|
|
Post by Wormopolis on Sept 17, 2011 16:28:50 GMT -8
is this still an issue?
|
|