-1

This page is showing different alignment in Internet Explorer to other browsers. Could you guide me in correcting it.

Benedict Lewis
  • 2,733
  • 7
  • 37
  • 78
user2446821
  • 25
  • 2
  • 8

2 Answers2

0

It may be IE transparency issue on style.css-(ul.accordion li .bgDescription). Refer http://css-tricks.com/css-transparency-settings-for-all-broswers/

and try to change transparency code or write seperate code for ie browser transparency. Hope it helps.

0

Please add a proper document type at the start of your document. IE is rendering document in Quirk Mode.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

In IE 10 your page is rendering correctly, IE 9, 8, 7 having issue. Apply above fix and it will solve the problem.

For your second problem refer to following

Failed to connect to mailserver at "localhost" port 25

Community
  • 1
  • 1
Taimur Khan
  • 531
  • 8
  • 21
  • Rendering is nearly identical with Quirks or Standards mode, so this is more general advice than an answer to their question. – Joey Jul 24 '13 at 05:56
  • @Јοеу Please read the following article (side note). http://www.cs.tut.fi/~jkorpela/quirks-mode.html – Taimur Khan Jul 24 '13 at 05:59