overlapping text in IE 7...please help

Discussion in 'HTML & Website Design' started by amiecn, Feb 28, 2008.

  1. #1
    fixed ..........
     
    amiecn, Feb 28, 2008 IP
  2. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #2
    try changing these

    #bullets{
    width: 310px;
    float: center;
    position:absolute;
    margin-left: 0px;
    margin-top: 10px;
    }

    #involved{
    width: 310px;
    float: center;
    margin-left: 350px;
    margin-top: 12px;
    }

    into these

    #bullets{
    width: 310px;
    float:left;
    position:absolute;
    margin-left: 0px;
    margin-top: 10px;
    }

    #involved{
    width: 310px;
    float: right;
    margin-left: 350px;
    margin-top: 12px;
    }

    i tested in totalvalidator and it seemed to look right.
     
    HDaddy, Feb 28, 2008 IP
    amiecn likes this.
  3. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Right, cause there's no such thing as float:center and I'm wondering if some browsers are seeing float: and are assuming it's left.
     
    Stomme poes, Feb 28, 2008 IP
    amiecn likes this.
  4. amiecn

    amiecn Well-Known Member

    Messages:
    360
    Likes Received:
    28
    Best Answers:
    0
    Trophy Points:
    120
    #4
    excellent - thank you VERY much - that appears to have fixed the problem

    :D given
     
    amiecn, Feb 28, 2008 IP