beccagranger Guest | Multi-Topic Moderation Not Transparent (8th Jan 08 at 5:24pm UTC) | | I don't know if this is fixable, but I noticed that the multi-topic moderation buttons are not transparent. Here's a screen shot of what I mean:
http://img520.imageshack.us/img520/5909/problemvl4.jpg
The background color behind the buttons is my forum background color, but I have the window 1 and 2 background colors set for a different color. Make sense? | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 6:02pm UTC) | | You seem to be using custom buttons. so that is a problem your end, not a vForums bug. | |
|
beccagranger Guest | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 7:30pm UTC) | | Yes, I am using custom buttons, but the buttons themselves have a transparent background. So, they should look like the background behind "Multi-Topic Moderation", but they don't. They have the same background color as the forum's background color....which should be in the coding.
I'm not sure if someone put the class as bgcolor, maybe it should be window1 or window2.....see what I'm saying? | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 7:41pm UTC) | | seems to have the window2 class...
Have you got a link to your forum please? And/or a link to one of the buttons that isn't transparent? | |
|
beccagranger Guest | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 7:50pm UTC) | | All of the buttons are transparent. Can I PM you the link to the forum? The template I'm working on.....I'm considering putting in the contest. | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 8:08pm UTC) | | Yes sure!
I would rather that you PMed or Posted a link to one of the 'non transparent' buttons that you have shown in your image... | |
|
beccagranger Guest | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 10:53pm UTC) | | Not a problem at all. Here are a couple of the images that I seem to be having trouble with:

 | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 10:55pm UTC) | | are they showing up transparent in that post?
Please PM me a link to the forum as well! | |
|
beccagranger Guest | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 10:59pm UTC) | | Just sent the PM, and yeah....they are transparent background in the post above. Just not on the forum. lol. | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 11:17pm UTC) | | Right, the crazy thing is I tried putting your images on my test forum with the same bg colour and it was all fine! ^_^
And then I copied your whole skin to my forum (using export) and it has the error....
Let me test some more! | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 11:24pm UTC) | | ok, worked it out... Those images aren't actually normal 'image links' they are infact buttons (<input>) type things. And as you set in your Forum Colours the 'input bg color' that is what these have got. Try this code as a fix:
 Code: - <script>
- /*Transparent Image Fix for Becca*/
- var d=document.getElementsByTagName('input');
- for(i=0;i<d.length;i++){
- if(d[i].name.match(/(lock|sticky|move|delete)/i)){
- d[i].style.backgroundColor = '#889670';
- }}
- </script>
| |
|
Dreg[Bot] Moderator
    
![[Avatar]](http://r2.mrfrufru.com/dregondrahl/avvay.jpg) Broken Posts: 415 Status: Offline Gender: Male Age: 37 Joined:
Additional Groups: Coding Team
  
pmYesh im sneaky! | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 11:36pm UTC) | | >.> why wont you just use CSS ?
Something likey
#admin_powers input { background: #889670; }
| |
 Now obsession rules my mind This commotion makes me blind Searching out who ever runs Or has stolen away my life
But i've already said
Don't ever back down Don't ever turn around My end has come So now I come for you.... |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 11:36pm UTC) | | cause I didn't think of that! | |
|
Dreg[Bot] Moderator
    
![[Avatar]](http://r2.mrfrufru.com/dregondrahl/avvay.jpg) Broken Posts: 415 Status: Offline Gender: Male Age: 37 Joined:
Additional Groups: Coding Team
  
pmYesh im sneaky! | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 11:39pm UTC) | | actually background: none; would be better, then its really transparent. | |
 Now obsession rules my mind This commotion makes me blind Searching out who ever runs Or has stolen away my life
But i've already said
Don't ever back down Don't ever turn around My end has come So now I come for you.... |
|
Ross Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 3,709 Status: Offline Gender: Male Age: 9 1⁄4 Joined:
Additional Groups: Support Team
  
pmwwwgtalkvForum | Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 11:41pm UTC) | | >.> why wont you just use CSS ?
Something likey
#admin_powers input { background: #889670; }
I'll add it to the global CSS file in about 1 minute time | |
|
|