Hi culshaja,
1) I always recommend to open links to other sites/companies (like the ones on the services page and all the manufacturers) in a new browser so users won't lose the focus from your site. You can do that with <A href="othercompany.com"
target="_blank">
2)In IE4.0 the left navigation window (sidebar menu) is not visible. You only see a black rectangle.
The main menu at the top: In IE4.0 the clicked cell is black instead of the darkblue color. The menu works OK.
3)you can make the bullits in the left navigation window (sidebar menu) the same hover-color with:
method 1
<script language="javascript" >
function changeColor(elem)
{
elem.style.color='#FF0000'
}
function changeColorBack(elem)
{
elem.style.color=''
}
</script>
<li onmouseover="changeColor(this)" onmouseout="changeColorBack(this)"><a href="r_acw.htm">ACW</a></li>
BTW: I recommend to put this javascript in a js-file and call the file standard in the header:
<SCRIPT LANGUAGE="JavaScript" SRC="yourJSfile.js" TYPE="text/javascript"></SCRIPT>
method 2 (easyer, but maybe less structural)
<a href="r_ecw.htm"><li>ECW</li></a>
4)I agree with the comments above, especially with GUJUm0del about the horizontal scrollbar. Eith a little effort you can prevent it and users will appreciate it.
Hope this helps,
Erik
<!-- My sport:
Boomerang throwing !!
This year I will participate at the World Championships in Germany. (
!! Many Happy Returns !! -->