IE7 messing up CSS Display property!

Associate
Joined
1 May 2006
Posts
810
Location
Bristol, UK
Evening all.

Got me a little problem with IE7 :mad:
This Page displays correctly in FF (looking at the top line of text "First, Previous, Next, Last") but in IE7 the 4 items appear in a vertical line!
CSS:
Code:
#pagenav
	{
	width: 400px;
	text-align: center;
	position: relative;
	margin: auto;
	}

#pagenavlink
	{
	width: 100px;
	text-align: center;
	position: relative;
	display: table-cell;
	}
HTML:
Code:
<div id="pagenav" align="center">
<div id="pagenavlink"><?php echo $firstlink ?></div>
<div id="pagenavlink"><?php echo $prevlink ?></div>
<div id="pagenavlink"><?php echo $nextlink ?></div>
<div id="pagenavlink"><?php echo $lastlink ?></div>
</div>
Upon search of google this is something to do with a Whitespace bug in IE7 *Go Microsoft* but none of the fixes I've tried seem to work.

P.S. I'm meeting with the 'customer' to discuss the colour scheme later this week :p
 
Back
Top Bottom