views:

32

answers:

1

I have a logo that is a transparent png and i want to overlay it on my bg image but when i do it shows only the background color.

Here is an example: failed transparency

I am using a modified copy of the WP theme Colourise
The Css is here: http://files01.s0urc3.ismywebsite.com/colourise/style.css
And the page here: http://s0urc3.ismywebsite.com/index.php

+1  A: 

There's this rule on line 87 of the CSS:

img {
    background: #1B1B1B;
    border: 1px solid #1B1B1B;
    padding: 5px;
}

It's applying a background color to every image. You'll need to override this for the logo or remove it entirely.

deceze
THANK YOU SOOOOOOOOOOO.....MUCH MAN i have been so busy with school that i haven't had time to sort it out.
ellisgeek
@ellis Tip: Use a decent browser such as Chrome or Safari or Firefox with Firebug installed. Right-click any element and choose *Inspect Element*. There'll be a list of all the styles that apply to the element and information where it came from. It's that simple.
deceze
I used to have firebug but it was killing my computer :PI have an OLD iBook G4
ellisgeek