As I said, a more fundamental problem must be resolved first. Here is the very top and head of your page:
HTML Code:
<html>
<head>
<title>..::TG-Gaming::..</title>
<link rel="StyleSheet" href="style.css" type="text/css">
<style type="text/css">
<!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" lang="en" xml:lang="en">
<script type="text/javascript" src="javascripts/chrome.js">
</head>
In order to display at all in IE and Opera, it should look like so:
HTML Code:
<!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" lang="en" xml:lang="en">
<head>
<title>..::TG-Gaming::..</title>
<link rel="StyleSheet" href="style.css" type="text/css">
<script type="text/javascript" src="javascripts/chrome.js"></script>
</head>
Let's at least get the page working before we worry about anything else. I'm surprised it displayed in FF with the way it was written.
Bookmarks