Hello,

Somewhere those relative positioning and top/right coordinates go wrong i
think.
Hmmm maybe change the pics to be based on absolute positioning instead of
relative.

The li elements and a elements are relative, and u probably dont want to
base your pic elements off of that position, but of the ul parent that all
the images/li's have in common. So you can base your position based off that
by stetting that .gallery to relative and the child elements li/a under it
to static, but the img as absolute positioning

(Btw i set those li and a elements to regular static positioning cause
another general rule overrides it to relative.)


.gallery li {
.....
position:static;
}

.gallery li a, .gallery li a:visited {
......
position:static;
}

.gallery li a img {
position:absolute;
top: 70px;
left: 0px;
...
}

Tried it in Firefox and worked, not sure of IE. good luck.
Arian
______________________________________________________________________
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