Log in

View Full Version : Need to make element transparent



Irishcash33
11-13-2008, 02:15 PM
Hi,
Part of this site I am working on is a shopping cart. The cart doesn't let you have full control over the css or html. So I can only override the styles. On this page (http://shop.wallstclothing.com/product.sc?categoryId=1&productId=2) The yellow box needs to be transparent. I can not find the correct element that is making it yellow... I have used xray and firebug, and have changed what they say is the style to transparent. Nothing seems to be working. Wondering if someone can look at and see if you can find the correct element I need to change.

Thanks

jscheuer1
11-13-2008, 05:35 PM
What yellow box? I don't see it in IE, FF, or Opera. What browser are you using?

Irishcash33
11-13-2008, 06:15 PM
I have looked at it on FF and IE. Here is a link (http://www.wallstclothing.com/Picture%201.png) to the screenshot of what I see.
Thanks

jscheuer1
11-13-2008, 06:30 PM
If that's what I think you mean, it's not yellow (#ff0). I guess you mean this:


#wrapper2, .outer, .float-wrap {
background-color: transparent;
}

Or, if it comes before other contradictory directives:


#wrapper2, .outer, .float-wrap {
background-color: transparent!important;
}

Irishcash33
11-13-2008, 07:12 PM
Thanks. That was it.
I had to take out .center { background:transparent;}. With that and the wrapper2 transparent, none of the middle section showed up.

Thank you for your help