ie problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dunryc
    New Member
    • Jul 2012
    • 1

    ie problem

    HI Hoping some one more experienced can help

    Ive been editing a web template i found online. Looks ok to me and displays well in firefox chrome safari but internet explorer justified the main text to the right can any one tell me why this happens and if there are any useable remedies

    any help would be gratefully appreciated

    http://dlsi.co.uk/test/index.html
  • Iceman47
    New Member
    • Jul 2012
    • 2

    #2
    all you need to change in your style
    replace this section
    Code:
    #content
    { text-align: left;
      width: 630px;
      padding: 25px 0 5px 25px;
      margin: 0;
    }
    With This one

    Code:
    #content
    { text-align: left;
      width: 630px;
      padding: 25px 0 5px 25px;
      margin: 0;
      float:left;}
    and it will work

    Comment

    Working...