Click to See Complete Forum and Search --> : cross browser positioning


crippletoe
03-17-2010, 12:05 PM
Hello all,
on my site, i have a relatively positioned DIV located inside a relatively positioned Table.
the site displays fine on IE and Firefox but on Safari, the DIV is positioned 2-3 pixels lower and messes up the whole layout.

this is my css for the Table and the DIV inside it:

table.contentpaneopen {
left:0;
position:relative;
top:0;
}

div.pagenav {
bottom:52px;
left:409px;
position:relative;
width:136px;
}

a link for the specific page is here: http://yaronattar.com/index.php?option=com_content&view=article&id=60&Itemid=100

the problematic part is the previous/next navigation on the lower right corner.
notice that in safari it will display wrong.

any ideas why?