Originally posted by Dayspring:
The reason behind the graphics error on the site on resolutions over 800x600 is because they are using a full 800x600 image as their backdrop. On the bigger resolution monitors, it begins to tile itself (repeat).
Actually it's caused by the frameset being defined wrong and tables being justified to the width of the browser instead of being absolute.
Some pages define the frameset as...
frameset rows="153,356"...
That means the top frame (the banner image and menu) is 153 pixels tall and the lower frame is 356 pixles tall. That doesn't work except on the machine the site was developed on due to different toolbar and font height settings of browsers. The top frame needs to be absolute, but the botton frame needs to be self adjusting.
The products page is almost defined correctly frameset rows="137,372*"..., but should be just frameset rows="137,*"
All of the pages break because the artwork is left justified on the page, but all content is displayed in a 90% wide tables which float and move based on the browser width.