PDA

View Full Version : VB opacity problem


iamacyborg
12-23-2009, 02:50 PM
Hi, I'm trying to make the main content areas of my forum partially opaque, using CSS3 rgba values.
I set the background values of the page with the following code:

background: rgb(40, 40, 40);
background: rgba(40, 40, 40, .8);

That works fine, the page section becomes partially opaque and the background image can be slightly seen.

Now I try to make the other sections (category, header, footer, 1st +2nd alternating colours, etc) fully transparent so that I don't have overlapping opacity values, but it's not working, and just shows a black background, like so. This image is with just the category strips modified, everything else is unchanged.

http://iamacyborg.com/blog/http://iamacyborg.com/blog/wp-content/uploads/2009/12/vbulletin_transparency.jpg

So that didn't work. I then tried using a fully transparent png image and using that as a background for the category strips. Made sure I'd reset the cache on my browser and still got the same thing.

If anyone's got any idea about where I'm going wrong, I'd really appreciate the help.

euantor
12-24-2009, 07:47 AM
Set the color to "transparent. It should then work:

color: transparent;

iamacyborg
12-24-2009, 08:02 AM
I'm presuming you mean put "background: transparent;" as changing the color parameter would change the text, not the background.

Just had a go at changing both the background and color to transparent, neither worked.

euantor
12-24-2009, 04:42 PM
Yeah, that's what I meant. No idea why that doesn't work. I haven't really tried that sort of thing before though I'm afraid.

iamacyborg
01-08-2010, 10:05 AM
In case anyone in future looks for a fix for this. The fix is to remove the background colour in the table border section.

ChopSuey
01-08-2010, 10:21 AM
AdminCP > Styles & Templates > Style Manager > Your Style > Main CSS > Page Backround

iamacyborg
01-08-2010, 10:27 AM
Chop, you might want to read my last post before giving some incorrect information. ;)