IE Css problem -.- when ie dies ?

Discussion in 'CSS' started by alex05, Jul 28, 2009.

  1. #1
    So here is the problem, this is my first website coded from 0 here's the site that i made for a friend http://www.ctv-crew.info/beta/ works perfect with firefox but not in ie 7 , look at the footer... how can i fix this problem ?
     
    alex05, Jul 28, 2009 IP
  2. Leron

    Leron Active Member

    Messages:
    38
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    53
    #2
    I had a glance at your code. You may want to do a few things here. First change the divs that are misbehaving to spans so that Ie can handle them. You footertitles height is 100% try commenting out that line that. For the main class2, 3, and 4 add a float left.

    So:
    .footertitles{
    /*height:100%;*/
    }

    add to .class2,3,4
    float:left

    Let use know how it goes.
     
    Leron, Jul 28, 2009 IP
  3. alex05

    alex05 Active Member

    Messages:
    108
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #3
    Oh god thanks now all works =) thanks for your help :D
     
    alex05, Jul 29, 2009 IP
  4. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,999
    Best Answers:
    253
    Trophy Points:
    515
    #4
    Uhg, headers that aren't marked up as headings or are even associated with their content, comment placement that can trip the double render/disappearing content bugs in IE (hey look, your footer is rendering twice in IE!), obvious list not marked up as a list, double breaks for what should be paragraphs, fixed metric fonts and no fallback content...

    I see I've been away from Digital Point for FAR too long. Not to beat a dead horse, but chuck it and start over again using semantic markup, separation of presentation from content, cut back on the divitus and classitus, and of course you might want to take a browse of the WCAG while you're at it.
     
    deathshadow, Jul 29, 2009 IP
  5. Leron

    Leron Active Member

    Messages:
    38
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    53
    #5
    Glad that it worked out for you. Good luck! :D
     
    Leron, Jul 30, 2009 IP