Well i'm going to try and work a style sheet in to it. But I am going to finish the news bit first.
Never used a style sheet before so I'll look up a tutorial 
EDIT:
Code:
mysql_connect('localhost','noth','disc89');
mysql_select_db('noth_phpb1');
$nid = mysql_real_escape_string($_GET['id']);
$query = mysql_query("SELECT * FROM sitenews WHERE id=$id;");
while($news = mysql_fetch_array($query)) {
print "<font size='1'><font color='#D0D0D0'>".$news['title']." (".$news['date_day']."/".$news['date_month']."/".$news['date_year'].")</font><br>
".$news['smalltext']."<br>
<div align='right'><font color='#D0D0D0'>
<a href='http://www.finalfantasyfan.net/sitenews.php?id=".$news['id']."' style='text-decoration: none'>[Read More]</a></font></div><br></font>";
}
It didn't work... Still the same... I have connected to the database already with a different file would that matter?
Bookmarks