darthvadersmaster
06-02-2006, 12:55 PM
When I was designing my layout for my site, I ran into some CSS positioning problems...the trouble was things were completely whacked in IE. So instead of wasting my time trying to figure out what the crap was wrong, I just decided I'll use different CSS for different browsers. So, whenever a user views my site in IE, special IE CSS is printed, but if they view it in any other browser, they get the CSS that works for them. But of course, another problem came up...at my school today, I went to my site to show off to some n00b HTML authors, and guess what? The site was as messed up as ever on IE. What on earth wrong? I'm using the latest version of IE on my computer (excluding IE 7 Beta...), and I'd assume the school is too, right? But then why does everything look messed up over there? Same browser, same resolution. Only difference is they use XP, I use 2000. Some help please :(
<?php
$browser = $_SERVER['HTTP_USER_AGENT'];
if($browser == 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; PeoplePal 3.0)') {
include('/home/neobpal/public_html/stylesheets/main_ie.php');}
elseif($browser == 'Mozilla/4.0 (compatible; MSIE 5.0; Windows NT 5.0; .NET CLR 1.1.4322; PeoplePal 3.0') {
include('/home/neobpal/public_html/stylesheets/main_ie.php');}
elseif ($browser == 'Mozilla/4.0 (compatible; MSIE 4.0; Windows NT 5.0; .NET CLR 1.1.4322; PeoplePal 3.0'){
include('/home/neobpal/public_html/stylesheets/main_ie.php');}
else {
include('/home/neobpal/public_html/stylesheets/main.php');
}
?>
<?php
$browser = $_SERVER['HTTP_USER_AGENT'];
if($browser == 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; PeoplePal 3.0)') {
include('/home/neobpal/public_html/stylesheets/main_ie.php');}
elseif($browser == 'Mozilla/4.0 (compatible; MSIE 5.0; Windows NT 5.0; .NET CLR 1.1.4322; PeoplePal 3.0') {
include('/home/neobpal/public_html/stylesheets/main_ie.php');}
elseif ($browser == 'Mozilla/4.0 (compatible; MSIE 4.0; Windows NT 5.0; .NET CLR 1.1.4322; PeoplePal 3.0'){
include('/home/neobpal/public_html/stylesheets/main_ie.php');}
else {
include('/home/neobpal/public_html/stylesheets/main.php');
}
?>
