Results 1 to 2 of 2

Thread: IE adds linebreak?

  1. #1
    Join Date
    May 2008
    Posts
    6

    IE adds linebreak?

    my page is located at http://www.equusdev.com/
    for some odd reason, IE has taken it upon itself to insert what appears to be a line break inbetween the top heading and the main body... any thoughts or tips?

  2. #2
    Join Date
    Feb 2006
    Location
    Salisbury UK
    Posts
    4,332
    First I added temporary background-colors to divs and found that #head is extending under the left logo:-

    #head { background-color: blue;
    width:800px;
    margin: 0 auto;
    }
    #hlinks { background-color: skyblue;
    position:relative;
    bottom:20px;
    font-size:9pt;
    color:#FFFFFF;
    text-align:right;
    width: 610px;
    float: right
    }
    div.scroller {
    /* modify width and height of scrolling section if

    necessary */
    font-size:11px;
    width:800px;
    height:500px;
    top:138px;
    overflow:hidden;
    margin: 0 auto;
    z-index: 1; background-color: green;
    }
    So I added a height of 118px to #head

    #head { height: 118px;
    width:800px;
    margin: 0 auto;
    }

    which stopped it going under the logo.
    Code downloaded to my PC will be deleted in due course.
    WIN7; IE9, Firefox, Opera, Chrome and Safari for Windows; screen resolution usually 1366*768.
    Also IE6 on W98 with 800*600 and IE8 on Vista 1440*900.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •