Cody Sickler wrote:

> On the layout (seen at http://www.vierzehn.us), the links in the 
> upper right corner are supposed to switch from (on hover) the borders
>  on the sides, to borders on the top and bottom, however they do not 
> show up at all. Again, on the bottom right, the links there should, 
> on hover, display a two pixel dashed border, but they are not doing 
> that.

IE/win can't stack properly, so parts of the links that ends up above
and below the absolute positioned parents - the top and bottom borders,
won't show up.

Adding...

a {position: relative;}

...will fix IE/win' stacking on that page.
However, it is often more reliable to make the a:p parents tall enough
to make room for the link-borders. The addition of...

#pages {padding: 2px 0;}
#footlinks {padding: 0 0 2px 0;}

...will have that effect.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
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