On Thu, 24 Jun 2004 16:03:32 +0000 (UTC), "makan_amini"
<webforumsuser (AT) macromedia (DOT) com> wrote:
Quote:
OK thank you for the warning. Does it looks good now? |
It's better. You have the following script at the bottom of the page:
<script type="text/javascript">
<!--
var menuitem1 = new menu(7,1,"hidden");
var menuitem2 = new menu(7,2,"hidden");
var menuitem3 = new menu(7,3,"hidden");
var menuitem4 = new menu(7,4,"hidden");
var menuitem5 = new menu(7,5,"hidden");
var menuitem6 = new menu(7,6,"hidden");
var menuitem7 = new menu(7,7,"hidden");
// -->
</script>
That script creates the menu objects, but the objects are referred to
earlier in the source code and called by the onMouseMove event, so if a
user moves the mouse before the page completely loads, you'll get
JavaScript errors. I would suggest you move that script up into the
document's <head> area.
Other than that, you have a great many things set to be 1024 pixels
wide. For example:
#pagecell1{
position:absolute;
top: 112px;
left: 2%;
right: 2%;
width:1024px;
background-color: #ffffff;
}
Consider that, even if a user has a 1024 pixel wide screen and their
browser is maximized, they will have the window borders and scroll bars
making the effective width of the browser's viewport more like 990-1000
pixels wide. If they also have a sidebar showing bookmarks or something,
the window may be more like 750 pixels wide. Your page is virtually
guaranteed to have a horizontal scroll bar for just about every user.
Gary