Problem 3
Also, in the scripts: you use
document.getSelection(), you should use
window.getSelection() instead...
=> you use in one of your scripts:
document.getSelection(). This is a non-standard objectmethod. The correct one (and which is compatible with all browsers) is
window.getSelection(). so replace
document.getSelection() with
window.getSelection()...
Problem 4
Furthermore, you're missing a
<br>-tag here:
code:
<input type="submit" name="Submit" value="Submit"></form></font>put a <br> here<font size="1" face="10" color="#000000"><a href="/index.php?action=results">Show me the results</font>
=> Again, an Internet Explorer thingie... Only in MSIE the line "
show me the results" is put under the button (for unknown reasons). If MSIE converted the HTML-code in the correct way then it should be next to the button. Thus this is how it is shown in "good" browsers; next to the button. So, in order to put the line under the button, you must insert a
<BR>-tag there....
Problem 6
There is no
style3-class defined anywhere....
<a href="mailto:webmaster@vexonet.com" class="style3" style="text-decoration: none">e-mail meloose the space here</a>
=> you have
class="style3" in that link. A class defines how an element is going to look like. These classes are defined in your stylesheet. But there is no class named
style3 in any of the stylesheets....
=> the "
loose the space"-comment is there because you have entered a space there and after the
</a>-tag there is also a space. Two spaces are useless and will be converted to only 1 space. This was proberly a small typo... Furthermore, you should always use the
<a href>-tag and the closing
</a>-tag directly infront and after the text, without any spaces in between. Otherwise you could have some small layout problems....