fireshroom
12-25-2006, 02:17 PM
I have a very simple problem i am sure many of you can fix easily... however my experience with php is very limited i have been trying to get around this issue but cannot....
The problem i have is how the text appears in IE, if you go to my main page
www.yourdefeat.com
you will strangely find that the text tilts towards the left side, and leaves a large area of unused space... at first i thought it was a fault of mine however it is not.... i have tried anything i could thing of to get the page to appear correctly but no luck.. I think it has something to do with the php I don’t know..
The code i use is this
<?php
$id = $_GET['id'];
switch($id) {
default:
include('home.php');
break; case "about":
include('about.php');
break; case "forum":
include('forum.php');
break; case "story":
include('story.php');
break; case "pictures":
include('pictures.php');
break; case "cliffmo":
include('cliffmo.php');
break; case "store":
include('store.php');
}?>
anyway simply put when i view site with Opera site appears correctly with text places in center of page and proportionate to everything... in IE page appears tilted as if moved to the left... anyone got ideas?
The problem i have is how the text appears in IE, if you go to my main page
www.yourdefeat.com
you will strangely find that the text tilts towards the left side, and leaves a large area of unused space... at first i thought it was a fault of mine however it is not.... i have tried anything i could thing of to get the page to appear correctly but no luck.. I think it has something to do with the php I don’t know..
The code i use is this
<?php
$id = $_GET['id'];
switch($id) {
default:
include('home.php');
break; case "about":
include('about.php');
break; case "forum":
include('forum.php');
break; case "story":
include('story.php');
break; case "pictures":
include('pictures.php');
break; case "cliffmo":
include('cliffmo.php');
break; case "store":
include('store.php');
}?>
anyway simply put when i view site with Opera site appears correctly with text places in center of page and proportionate to everything... in IE page appears tilted as if moved to the left... anyone got ideas?