RuhRoe Full Member
Posts: 218 Status: Offline Gender: Male Age: 30 Joined:
pmxfire | Board Opacity (30th Nov 08 at 9:03pm UTC) | | I was wondering if someone could make a code that the board can have a lower Opacity. Maybe around 50%? I would have to edit it to see how much. Can this include the menu button and info center?
| |
|
dog199200 Guest | Re: Board Opacity (1st Dec 08 at 12:37am UTC) | | very easily done with css, i'll have it to you in a bit
<style> body { filter:alpha(opacity=50); -moz-opacity:0.50; opacity:0.50; } </style>
Global Header | |
|
Nick Very Senior Member
Posts: 3,012 Status: Offline Gender: Male Location: vForums Age: 34 Joined:
pmwww | Re: Board Opacity (1st Dec 08 at 12:55am UTC) | | I am not sure if Dwight included the Menu Icons. But this will make all images transparent like.
Code: - <script type="text/javascript">
- <!--
-
- var iLink=document.getElementsByTagName('a');
- for(i=0;i<iLink.length;i++){
- if(iLink.item(i).firstChild && iLink.item(i).firstChild.nodeName.match(/img/i)){
- var iTheGo=iLink.item(i).firstChild;
- iTheGo.style.opacity=.6;
- iTheGo.style.filter='alpha(opacity=50)';
- iTheGo.onmouseover=function(){
- this.style.opacity=1;
- this.style.filter = 'alpha(opacity=100)';
- };
- iTheGo.onmouseout=function(){
- this.style.opacity=.6;
- this.style.filter = 'alpha(opacity=50)';
- };
- }
- }
-
- //-->
- </script>
Where the "50" is you can change that from 1-100.
Way at the bottom of Global Footer, everything has to be above it or somethings wont be included. | |
|
dog199200 Guest | Re: Board Opacity (1st Dec 08 at 12:57am UTC) | | mine does make the buttons transparent just not an image overlay | |
|
Nick Very Senior Member
Posts: 3,012 Status: Offline Gender: Male Location: vForums Age: 34 Joined:
pmwww | Re: Board Opacity (1st Dec 08 at 4:59am UTC) | | Oh I see | |
|
RuhRoe Full Member
Posts: 218 Status: Offline Gender: Male Age: 30 Joined:
pmxfire | Re: Board Opacity (2nd Dec 08 at 3:02am UTC) | | Thanks Dwight and DM | |
|
dog199200 Guest | Re: Board Opacity (2nd Dec 08 at 3:12am UTC) | | np | |
|