jsampsonPC wrote:
 |
BruceMorgan wrote:
Are you using quirks mode or strict mode? |
Are you refering to CSS? This isn't a CSS issue from what I understand - but I could be wrong.
Quirks mode vs. strict mode mainly affects CSS but also a few other things so it's definitely important to know. In case you didn't know, which mode is used depends on the DOCTYPE present in the HTML file. A HTML4.01 DOCTYPE (with both the public and system identifiers present) or higher (or an unknown DOCTYPE) will cause it to use strict mode. No DOCTYPE or an older one will cause it to use quirks mode.
An easy way to find out is to put the following script in your page:
<script type="text/javascript">
alert(document.compatMode);
</script>
This'll prompt either "BackCompat" (quirks mode) or "CSS1Compat" (strict mode).