Hey everyone,
My issue is thus: Basically I have a page that is;
http://www.jealy.co.uk/index.phpPHP Code:<? include "header.php"; ?>
<? switch ($HTTP_GET_VARS[page]) {
default:
include "home.php";
break;
case 'me':
include 'myself.php';
break;
case 'work':
include 'mywork.php';
break;
case 'stuff':
include 'stuff.php';
break;
case 'links':
include 'links.php';
break;
case 'contact':
include 'contact.php';
break;
}
?>
<? include "footer.php"; ?>
Which works exactly how I want to on IE (with everything in the middle)
however when I check the same page on firefox, the "content" seems to have self aligned itself to the left. It does the same with this;
So it's not my page-swapping code.PHP Code:<? include "header.php"; ?>
<? include "home.php"; ?>
<? include "footer.php"; ?>
I'm just totally stumped as to why firefox wants to put it over to the left, and IE makes it centered.
On the "content" pages (they are all the same at the moment) there is a table, which is aligned in the center.
Does anyone know why and/or how I can make it not do this?
Thanks in advance,
Jealy.



Reply With Quote


Bookmarks