Ok, so here is the CSS code in an external sheet:
#header{
position:fixed;
width:100%;
height:15%;
}
#hedr{
position:fixed;
height:5%;
width:6%;
top:5%;
left:30%;}
#nme{
position:fixed;
font-size:400%;
top:3%;
left:10%;
}
Here is the php document:
<!DOCTYPE HTML>
<html>
<head>
<meta name="keywords" content="Roun, David Roun, Rounsworld, Heather Roun">
<meta name="description" content="Personal website">
<meta name="author" content="David Roun">
<meta charset"UTF-8">
<link rel="stylesheet" type="text/css" href="bground.css">
</head>
<body>
<?php session_start();?>
<div id="header">
<table>
<tr><td><img id="hedr" src="pages/<?php echo $_SESSION['name'] . '/' . $_SESSION['picture'];?>"/></td><td id="nme"><?php echo $_SESSION['name'];?></td></tr>
</table>
</div>
</body>
</html>
The problem is that the CSS code works when it is on the same page as the php file, but when I try to use it as an external sheet, the page ignores it and displays the picture full page. I tried it in the same folder, and in a different folder (originally) and had the CSS code checked, so I know it's not the code. Any thoughts?