Results 1 to 5 of 5

Thread: Need to make element transparent

  1. #1
    Join Date
    Jul 2008
    Location
    boston, ma
    Posts
    88
    Thanks
    0
    Thanked 2 Times in 2 Posts

    Default Need to make element transparent

    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 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

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    What yellow box? I don't see it in IE, FF, or Opera. What browser are you using?
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Jul 2008
    Location
    boston, ma
    Posts
    88
    Thanks
    0
    Thanked 2 Times in 2 Posts

    Default

    I have looked at it on FF and IE. Here is a link to the screenshot of what I see.
    Thanks

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    If that's what I think you mean, it's not yellow (#ff0). I guess you mean this:

    Code:
    #wrapper2, .outer, .float-wrap {
    background-color: transparent;
    }
    Or, if it comes before other contradictory directives:

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

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  5. #5
    Join Date
    Jul 2008
    Location
    boston, ma
    Posts
    88
    Thanks
    0
    Thanked 2 Times in 2 Posts

    Default

    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

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •