ie vs firefox

Discussion in 'HTML & Website Design' started by RussReynolds, Jan 30, 2007.

  1. #1
    Hello,

    I have begun designing my own sites for flexibility and to get exactly what I want. Also, I really enjoy it although I am just learning.

    When I view my site with ie, it looks great. When I view it with firefox, the header (which I placed inside a table) has spaces around the edges.

    I am sorry if I am not clear. Just wondering if anyone has encountered this problem and how they solved it.

    Thanks,
     
    RussReynolds, Jan 30, 2007 IP
  2. jared

    jared Peon

    Messages:
    231
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Well if you posted that particular chunk of code we could look and it and probably pick out the problem really quick... ;)
     
    jared, Jan 30, 2007 IP
  3. RussReynolds

    RussReynolds Peon

    Messages:
    88
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I haven't published it to the web yet. What piece of the code do you need to see? The header or the whole page?
     
    RussReynolds, Jan 30, 2007 IP
  4. bebe123

    bebe123 Well-Known Member

    Messages:
    2,247
    Likes Received:
    57
    Best Answers:
    0
    Trophy Points:
    153
    #4
    Firefox because IE is busy for me
     
    bebe123, Jan 30, 2007 IP
  5. RussReynolds

    RussReynolds Peon

    Messages:
    88
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I must be over my head:) I don't understand what you mean. I have only one page coded in HTML that looks ok in ie but not in firefox.

    Sorry, I don't understand what you mean.
     
    RussReynolds, Jan 30, 2007 IP
  6. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #6
    Without seeing, there are way too many possibilities; default margin/padding differences and collapsing margins (which IE gets wrong) come immediately to mind.

    cheers,

    gary
     
    kk5st, Jan 30, 2007 IP
  7. Ginger Ninja

    Ginger Ninja Guest

    Messages:
    161
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Post the code from your header and relevant section of your stylesheet.
     
    Ginger Ninja, Jan 30, 2007 IP
  8. pangea

    pangea Guest

    Messages:
    557
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    #8
    have you verified all of your coding with a validator? that may sort out the problem
     
    pangea, Jan 31, 2007 IP
  9. dc dalton

    dc dalton Active Member

    Messages:
    521
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    58
    #9
    Best advice I was ever given was "get it right in FF" and then do the needed fixes in IE ..... seems to work fine for me
     
    dc dalton, Jan 31, 2007 IP
  10. 1EightT

    1EightT Guest

    Messages:
    2,646
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    0
    #10
    I've had code that comes back completely validated yet still has display problems in IE. I eish everyone would just switch to firefox.
     
    1EightT, Jan 31, 2007 IP
  11. unitedrokz

    unitedrokz Peon

    Messages:
    86
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #11
    I agree with kk5st in that margins and padding seem like the likely reason you are having this problem... try adding this to the top of your html in the style guide

    you may not need the padding line, as margin should do the trick - but just in case i put it in

    so it should look like this in your html.....

    <style type="text/css">
    <!--
    body {
    margin:0px;
    padding:0px;
    }
    -->
    </style>
     
    unitedrokz, Jan 31, 2007 IP