Hi Mike, I've looked at your code and have also figured out a solution for your layering problem. An element need to have a 'position' attribute (relative, absolute, etc) in order for z-index to work properly. Also when layering div like you are, it's important to give position (and sometimes z-index) to parent elements in order to get cross browser happiness.
The quick and dirty solution I found using Firebug was to add position:relative to the #upper div. Worked in FF, but I'm not sure about other browsers. Hope this helped. Sean K. Stewart www.seankstewart.com On Oct 12, 12:20 pm, MikeGatto <[email protected]> wrote: > I've vertically position a calendar div > onhttp://dev.lisantra.com/laentradadetubac.com/. > The page itself has a upper half and a lower half, each with a > different background image sliced from a PSD. The calendar widget is > partly in the upper half and part in the lower half. The upper half > displays fine, but the background image and color of the lower half's > div overlays the content. If I hide the bg image and bg color in > Firebug, the calendar div's content is indeed there. > > I've played with the overflow and z-index properties, but no joy. I > need some help to get the text content in the calendar div to show. > > Thanks! -- You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en.
