CSS design in Firefox not printing properly
Okay, I'm working on my news script and trying not to use tables, using DIV's instead. It works like a charm in IE, but when I look in Firefox, it's a disaster, and I don't know why. I tried switching from <div id=""> to <div class=""> and it didn't change anything (the w3 validator didn't like when the script repeated the same ID's while replicating the divs for another news).
So I really don't know why the text doesn't appear in the boxes it would be supposed to. Anyone wanna take a look?
http://www.timestranger.net/trunks/test/news/news.php
css:
http://www.timestranger.net/trunks/test/news/stylesheet.css
PHP:<?php
base html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>my index...</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
</head>
<body class="body">
{start loop}
<div class="content2">
<div class="newsheader"><p class="leftalign"><b>{title}</b></p><p class="rightalign">{author} - {day} / {month} / {year}</p></div>
<div class="newscontent">{content}</div>
<div class="newsfooter"><p class="rightalign"><a href="{commentsurl}">see comments</a></p></div>
</div>
{end loop}
{next page}
</body>
</html>
?>
stylesheet.. get it from the link :S
thanks
