-----Original Message-----
From: Thierry [mailto:thierry.koble...@gmail.com] On Behalf Of Thierry
Koblentz
Sent: Sunday, May 02, 2010 8:35 AM
To: 'taestrada'; css-d@lists.css-discuss.org
Subject: RE: [css-d] Background image not showing up

> I've used j-query to create some toggled content on this page:
> 
> http://www.issaquahfish.org/dev/education/learn-about-salmon.html
> 
> 
> 
> If you click on any of the toggles, you will see the bottom background
> image
> from <div class="block"> is there, but the repeating image for <div
> class="toggle_container"> is missing. I've spent way too much time
> troubleshooting this but can't figure out what I'm doing wrong.

The background image declaration is in this rule:

.toggle_container {}

But you have the following rule that styles div.block which is a child of
div.toggle_container

#container div {
        background-color:#FFFFFF;
}

I'm not sure why you're styling all the DIVs like that, but if you do not
want to change that styling you can use the following to fix the issue:

#container .block {
        background-color:transparent;
}


--
Regards,
Thierry
www.tjkdesign.com | www.ez-css.org | @thierrykoblentz

Thanks so much. That worked perfectly! (I need the container div to have the
#fff background because otherwise the blue patterned background shows
through.) I really appreciate your help!

Alix


______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to