What went wrong in IE6?

Discussion in 'HTML & Website Design' started by harmoniusdesign, Nov 3, 2009.

  1. #1
    password to see the post is password... if there is one.

    Anyways, I'm coding this theme and for some reason when I add markup to posts manually, it breaks.

    If I put the markup in the actually theme files, it does ok.

    Weird.


    Any help? would greatly appreciate it.


    HD

    edit:resolved
     
    Last edited: Nov 3, 2009
    harmoniusdesign, Nov 3, 2009 IP
  2. forextrendalerts

    forextrendalerts Guest

    Messages:
    132
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Sorry for not being specific, I have a problem with IE6. In firefox, all the three columns are presented neatly. But in IE6, the right column suddenly fall down below the adjacent column. Can somebody help me with this?
     
    forextrendalerts, Nov 4, 2009 IP
  3. tobykw13

    tobykw13 Peon

    Messages:
    41
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    tobykw13, Nov 4, 2009 IP
  4. harmoniusdesign

    harmoniusdesign Active Member

    Messages:
    223
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #4
    This is becuase of a margin error. IE sometimes does something similar to doubling a margin-left/right

    for example


    #col1
    {
    blah;
    blah;
    blah;
    margin-left:30px;
    }


    to fix this for IE you could do this

    *html #col1
    {
    margin-left:15px;
    }

    But I always include an IE.css when I do this, just copy and paste style.css, then go through it and delete all the parts that say *html

    for example you'd remove this whole thing

    *html #col1
    {
    margin-left:15px;
    }


    HD
     
    harmoniusdesign, Nov 6, 2009 IP