vForums Support Banner



 

Welcome Guest! Please Login or Register
vForums Support :: vForums :: Support :: Multi-Topic Moderation Not Transparent - View Topic (Page 1 of 2)Page: 1 2
Topic Rating: *****
Printable View
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? {Unsure}
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
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]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
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]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 8:08pm UTC)
Yes sure! {Smile}

I would rather that you PMed or Posted a link to one of the 'non transparent' buttons that you have shown in your image... {Unsure}
beccagranger
Guest
Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 10:53pm UTC)
Not a problem at all. {Grin} Here are a couple of the images that I seem to be having trouble with:

Image

Image
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
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! {Smile}
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]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
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.... {Unsure}

Let me test some more! {Smile}
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
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:
 
  1. <script>
  2. /*Transparent Image Fix for Becca*/
  3. var d=document.getElementsByTagName('input');
  4. for(i=0;i<d.length;i++){
  5. if(d[i].name.match(/(lock|sticky|move|delete)/i)){
  6. d[i].style.backgroundColor = '#889670';
  7. }}
  8. </script>
 
Dreg[Bot]
Moderator
*****

[Avatar]
Broken

Posts: 415
Status: Offline
Gender: Male
Age: 37
Joined:  

Additional Groups:
Coding Team
***


Reputation: 14%  


pm
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;
}


Image

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]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 11:36pm UTC)
cause I didn't think of that! {Tongue Out}
Dreg[Bot]
Moderator
*****

[Avatar]
Broken

Posts: 415
Status: Offline
Gender: Male
Age: 37
Joined:  

Additional Groups:
Coding Team
***


Reputation: 14%  


pm
Re: Multi-Topic Moderation Not Transparent (8th Jan 08 at 11:39pm UTC)
{Tongue Out} actually background: none; would be better, then its really transparent.


Image

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]

Posts: 3,709
Status: Offline
Gender: Male
Age: 9 14
Joined:  

Additional Groups:
Support Team
***


Reputation: 45%  


pmwwwtwittergtalkvForum
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 {Cheesy}

Image
 Printable View
Page: 1 2

All times are GMT+0 :: The current time is 7:24pm
Page generated in 1.247 seconds
This Forum is Powered By vForums (v2.4)
Create a Forum for Free | Find Forums