Solving Internet Explorer problems with DOCTYPE.

For menus to look right on Internet Explorer, your web page must be coded properly - your HTML code must have a DOCTYPE declaration.

To add the DOCTYPE declaration:

  1. Open the HTML code of your web page or design template
  2. Locate the very top of the code
  3. Make sure that before <html> tag you have a tag that begins with <!DOCTYPE
  4. If you do not have such tag, add <!DOCTYPE html> before <html>

Example HTML code beginning:

<!DOCTYPE html>
<html>
...

Click here, to learn more.