Firefox vs. IE

This is a discussion on "Firefox vs. IE" within the Web Page Design section. This forum, and the thread "Firefox vs. IE are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jun 28th, 2007, 00:01
Reputable Member
Join Date: Jan 2004
Location: California
Age: 19
Posts: 232
Thanks: 0
Thanked 2 Times in 2 Posts
Send a message via AIM to tox0tes
Firefox vs. IE

On Firefox, everything looks fine...but then I go to view it on IE and its completely messed up. I can't even begin to explain how messed up it is. Things are broken, there's random spacing, backgrounds are stretching where they arent supposed to.... Can anyone help me figure out how to make my web site display correctly on IE?

http://www.solsurfer.com/alienindex.html
Reply With Quote

  #2 (permalink)  
Old Jun 28th, 2007, 01:29
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Firefox vs. IE

IE thinks it's very adorable when it adds in it's own base margins. So when you start putting things in, you are already up against the wall because they have added those pretty margins in to make you blow your stack.

In your Body of the css put.
Code: Select all
body{
    padding: 0;
    margin: 0;
}
If that doesn't "help"... may not be perfect, try this as your first bit of css.
Code: Select all
* {
    margin: 0;
    padding: 0;
}
That should take things to zero in IE. Now go ahead and tweak your spacing. If you need more help, I'll be here tomorrow.
Reply With Quote
  #3 (permalink)  
Old Jun 28th, 2007, 01:38
Reputable Member
Join Date: Jan 2004
Location: California
Age: 19
Posts: 232
Thanks: 0
Thanked 2 Times in 2 Posts
Send a message via AIM to tox0tes
Re: Firefox vs. IE

wow that really helped. All of my relative positioning is now consistent on both firefox and IE...thank you.

Still have to work on the background image coming off the sides and the spacing between div rows. Stupid IE....
Reply With Quote
  #4 (permalink)  
Old Jun 28th, 2007, 01:51
Reputable Member
Join Date: Jan 2004
Location: California
Age: 19
Posts: 232
Thanks: 0
Thanked 2 Times in 2 Posts
Send a message via AIM to tox0tes
Re: Firefox vs. IE

I'm getting closer and closer.... I am discovering a few interesting things about IE...

When you relative position an object, IE will retain the space that the object originally occupied, so if you have 2 images vertically placed and you relative position them to be next to each other (in my case), IE will force the web page to keep that vertical space, despite the fact that the image isn't there anymore. This brings me to believe that IE generates HTML portion of the page before the CSS portion...just think about it. Firefox doesnt do that.

Anyway, I fixed the background width problem by removing "float:left" from the inner div, which I guess was causing problems in IE but not Firefox. I need to work on finding out why there is spacing between some of the div rows.
Reply With Quote
  #5 (permalink)  
Old Jun 28th, 2007, 12:10
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Firefox vs. IE

that is interesting...
holler if you need help!
Reply With Quote
  #6 (permalink)  
Old Jun 28th, 2007, 17:24
Reputable Member
Join Date: Jan 2004
Location: California
Age: 19
Posts: 232
Thanks: 0
Thanked 2 Times in 2 Posts
Send a message via AIM to tox0tes
Re: Firefox vs. IE

I have the site almost identical in both IE and Firefox. In IE7 it looks perfect, but then in IE6 there is a space between the top div row and the second div row. Look at this screenshot:

Reply With Quote
Reply

Tags
browsers

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not 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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Firefox Vs IE7 (CSS) Monie Web Page Design 9 Sep 20th, 2007 02:37
Useful Firefox Add-ons Antwan Webforumz Cafe 19 Feb 21st, 2007 16:02
alt tag in Firefox afuller Web Page Design 8 Dec 9th, 2006 19:16
Need help regarding firefox vs. ie james@thecultureofme Web Page Design 5 Jun 2nd, 2006 14:32
IE ok, Firefox no way lizarddoctor Web Page Design 4 Nov 27th, 2005 23:35


All times are GMT. The time now is 04:08.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43