Site Alignment on Internet Explorer

Sanosuke

New Member
Messages
47
Reaction score
0
Points
0
Hey everybody,

My site is currently having an issue with Internet Explorer where the entire homepage would be aligned to the left.

It looks perfectly fine on Firefox or Safari, but on IE, it is a mess. The thing is that I do not understand why the problem is only occurring for the home page, and not the other pages as well.

If you can help me, thank you so much. The link to my site is in my sig.
 
Last edited:

dickey

New Member
Messages
128
Reaction score
0
Points
0
I think it is because of your having 2 doctypes. and having code before doctypes gives a lot of error. it should be the first line in your html file.

try to correct that problem...
HTML:
<TITLE>Utada United - The Unofficial Source for Utada Hikaru</title>

<!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">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="distribution" content="global" />
<meta name="robots" content="follow, all" />
<meta name="language" content="en, sv" />
<title>Kanye vs. Utada: Love Lockdown x Passion Mash-Up | Utada United</title>

<!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">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="distribution" content="global" />
<meta name="robots" content="follow, all" />
<meta name="language" content="en, sv" />
<title>
Utada United &raquo; Kanye vs. Utada: Love Lockdown x Passion Mash-Up 
</title>
...

try to make it look like

HTML:
<!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">
  <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="distribution" content="global" />
    <meta name="robots" content="follow, all" />
    <meta name="language" content="en, sv" />
    <head profile="http://gmpg.org/xfn/11">
    <TITLE>Utada United - The Unofficial Source for Utada Hikaru</title>
...
 
Top