Cross Browser Issue

Discussion in 'CSS' started by eSubmitLinks, Dec 19, 2008.

  1. #1
    http://tinyurl.com/3h8rsc

    It works well with FF3; however, content is shifted to the right on IE. Any help is appreciated.
     
    eSubmitLinks, Dec 19, 2008 IP
  2. jatazoulja

    jatazoulja Peon

    Messages:
    82
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    try this! :D
    1st of... you got box modeling issues specualy with the #content #right...
    and think you should have float left it... :D

    2nd when you use floats... always use a clear:both... or everything at the bottom will just stuck up... :D

    heres some "thought" I made
    
    #content #right {
        float:left;
        _margin:0px; /* ie 6 hack */
    }
    #content #dash{
        clear:both;
    }
    
    Code (markup):
     
    jatazoulja, Dec 19, 2008 IP