icon Learn how to get the most out of Surmunity - read our forum tips here! | Welcome! Please register to access all of our features.

» Surpass Web Hosting Forums » Discussions » Coding and Programming » What is wrong with my EE layout (in IE)

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread
Old February 26th, 2008, 11:54 AM   #1 (permalink)
Surpassing Dutch
Super #1
 
Edwin's Avatar
 
Joined in Sep 2004
Lives in Arnhem, the Netherlands
Hosted on SH98
2,252 posts
Gave thanks: 158
Thanked 37 times
What is wrong with my EE layout (in IE)

When I look at my blog with Firefox, it looks as it should be, but when I'm looking at it with IE (at work, can't install other browsers ) it looks wrong. Since I'm not a coder/designer myself, I've no clue on where to look for it.

I will attach the index.php file, maybe someone can see from that what I <bleeped> up.
Attached Files
File Type: txt index.txt (7.6 KB, 23 views)
__________________
sh98
Edwin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 26th, 2008, 12:08 PM   #2 (permalink)
URB4N 5K1LLZ
Super #1
 
Roxy's Avatar
 
Joined in Sep 2005
Lives in Orlando, FL
Hosted on SH63
2,648 posts
Gave thanks: 81
Thanked 127 times
Well, IE is THE WORST browser on earth and sadly sometimes valid coding that looks perfect in every other browser will mess up in IE, why? Because it sucks! From what I can see within the index file, nothing is really wrong, but then again I don't have your CSS file so I'm not 100% sure. If anything, you'll probably have to set some IE compatible CSS styles.

What's the link of your website?
__________________
Roxanne
Surpass Staff

Urban Roxy -Personal Blog
SH63 - the best darn shared server!
Roxy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 26th, 2008, 12:19 PM   #3 (permalink)
Surpassing Dutch
Super #1
 
Edwin's Avatar
 
Joined in Sep 2004
Lives in Arnhem, the Netherlands
Hosted on SH98
2,252 posts
Gave thanks: 158
Thanked 37 times
It's a CSS file I copied from the theme page on the expression engine site. Trying to add it.
Attached Files
File Type: txt site_css.txt (7.0 KB, 26 views)
__________________
sh98
Edwin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 26th, 2008, 12:21 PM   #4 (permalink)
URB4N 5K1LLZ
Super #1
 
Roxy's Avatar
 
Joined in Sep 2005
Lives in Orlando, FL
Hosted on SH63
2,648 posts
Gave thanks: 81
Thanked 127 times
What exactly is the problem you are seeing in IE?
__________________
Roxanne
Surpass Staff

Urban Roxy -Personal Blog
SH63 - the best darn shared server!
Roxy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 26th, 2008, 12:24 PM   #5 (permalink)
Surpassing Dutch
Super #1
 
Edwin's Avatar
 
Joined in Sep 2004
Lives in Arnhem, the Netherlands
Hosted on SH98
2,252 posts
Gave thanks: 158
Thanked 37 times
The two sidebars are looking okay, but the main content is not on the place it should be (next to the sidebars, not under it)
__________________
sh98
Edwin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 26th, 2008, 12:31 PM   #6 (permalink)
Surpass Fan
Excelling Contributor
 
cowboy's Avatar
 
Joined in Nov 2005
Lives in Colorado
Hosted on DEDI
924 posts
Gave thanks: 2
Thanked 91 times
Quote:
Originally Posted by Edwin View Post
When I look at my blog with Firefox, it looks as it should be, but when I'm looking at it with IE (at work, can't install other browsers ) it looks wrong. Since I'm not a coder/designer myself, I've no clue on where to look for it.

I will attach the index.php file, maybe someone can see from that what I <bleeped> up.
Your divs widths (left--200, right--168,main--432) add up to 800 which is the same as your container(800). Any extra padding, margin, or border will not allow a fit and the div to load last (your main here) will have to go into overflow and display later in the page. The right div is snapping to the left because they have it floating left instead of right.

Increase your overall container to like 810 px. Increase if it still has not positioned correctly and back off until it holds and add 1px for good measure.

Browsers are like heart transplant doctors. You want to educate them with your scripts so you know you don't have a rejection on your patient. IE has a greater degree of finesse to details.
__________________
Where would you be if you were at the highest court in the land (US)?
cowboy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 26th, 2008, 12:57 PM   #7 (permalink)
URB4N 5K1LLZ
Super #1
 
Roxy's Avatar
 
Joined in Sep 2005
Lives in Orlando, FL
Hosted on SH63
2,648 posts
Gave thanks: 81
Thanked 127 times
Quote:
Originally Posted by cowboy View Post
Your divs widths (left--200, right--168,main--432) add up to 800 which is the same as your container(800). Any extra padding, margin, or border will not allow a fit and the div to load last (your main here) will have to go into overflow and display later in the page. The right div is snapping to the left because they have it floating left instead of right.

Increase your overall container to like 810 px. Increase if it still has not positioned correctly and back off until it holds and add 1px for good measure.

Browsers are like heart transplant doctors. You want to educate them with your scripts so you know you don't have a rejection on your patient. IE has a greater degree of finesse to details.
That's sounds like a good idea. If the problem still persists, please update us!
__________________
Roxanne
Surpass Staff

Urban Roxy -Personal Blog
SH63 - the best darn shared server!
Roxy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 26th, 2008, 1:09 PM   #8 (permalink)
H
after g, before i
Super #1
 
H's Avatar
 
Joined in Jul 2004
Hosted on Gojira
7,870 posts
Gave thanks: 44
Thanked 127 times
Quote:
Originally Posted by Roxy View Post
Well, IE is THE WORST browser on earth and sadly sometimes valid coding that looks perfect in every other browser will mess up in IE, why? Because it sucks! From what I can see within the index file, nothing is really wrong, but then again I don't have your CSS file so I'm not 100% sure. If anything, you'll probably have to set some IE compatible CSS styles.

What's the link of your website?
I don't know... I think Firefox is the problem. It's made my Mozilla afterall... which is basically Netscape, which is funded by AOL... Therefore it's AOL that causes all headaches of the Internets.
H is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 26th, 2008, 3:08 PM   #9 (permalink)
Surpassing Dutch
Super #1
 
Edwin's Avatar
 
Joined in Sep 2004
Lives in Arnhem, the Netherlands
Hosted on SH98
2,252 posts
Gave thanks: 158
Thanked 37 times
Quote:
Originally Posted by H View Post
I don't know... I think Firefox is the problem. It's made my Mozilla afterall... which is basically Netscape, which is funded by AOL... Therefore it's AOL that causes all headaches of the Internets.
:P

Yes, I do hate AOL, but I <333 Firefox.
__________________
sh98
Edwin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On