Forum Moderators: open
Does anyone know what I am doing wrong?
If you go to my home page in my profile and add new/business_sites/index.htm to the end of the URL, you can see the page I'm working on.
If you use the validator, you will see a lot of attributes in your frameset tags that are not valid, such as scrolling (belongs in the frame tag).
But I'll bet at least part of the problem is because browsers are inconsistent in how you get rid of borders in frames.
To catch all the squirrely browsers, you need three different attributes to get rid of borders, 2 in the frameset tag and 1 in the frame tag:
<FRAMESET COLS="xx,yy" FRAMEBORDER="NO" BORDER="0">
<FRAME SRC="foo.html" FRAMEBORDER="0">
Some of that will probably not validate - but it is what you need for cross-browser and cross-platform borderless frames.
I won't have a chance to look at the page on a Mac again until next week. If anyone gets a chance, could you look at it on a Mac with IE and tell me if it looks normal now?