I'm using Eric Meyer's Pure CSS Popups approach on my links page. I
have 3 sections on the same page; each section has its own set of
links and its own area for the popups. I want the popups to be
centered on the page, but IE7 pushes the text to the right for the
first two sections (the last section is centered). Firefox 2.0 renders
all 3 sections fine.

Here is the page:
http://cgmaille.com/test/links-test.html

And the two CSS files affecting it:
http://cgmaille.com/test/newlook.css
http://cgmaille.com/test/links.css

The CSS for the popups is in the links.css file, and looks like this:

.links {
        position: relative;
        text-align: center;
        margin-top: 10px;
        padding-top: 35px;
}

.links a span {
        display: none;
}

.links a:hover span {
        position: absolute;
        top: 0px;
        left: 0px;
        display: block;
        width: 742px;
        color: #FFFFFF;
        text-align: center;
        text-decoration: none;
}

Is this a problem where I can't have multiple popup areas? I've tried
naming each section uniquely, but it didn't help.

Thanks,

Jeff
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to