AliensAreFuzzy said:
For some reason my school sports website doesn't seem to work on Macs, neither Safari or IE display it when I try to link to any of the sports pages..
www.xavierhawks.com
Any ideas on how to fix this?
Yup, put a DOCTYPE on each page, validate each page on the W3 webpage, remove all legacy and proprietary code, and correct all errors the validator pops up.
Incorrect web page viewing has nothing to do with the machine it is being viewed on, but everything to do with the page not being coded properly.
Tell the person who developed the page to learn the web standards and specifications for HTML, or better yet XHTML. Next up, learn about DOCTYPES, and how to validate pages. Finally, when a page is written it should ALWAYS be validated, then all errors in the code corrected.
When pages have no DOCTYPES, or are throwing up errors, the browsers can't view them properly so they go into something called quirks mode. Quirks mode basically means the browser guesses how to display the page, so it should always be avoided. You avoid it with error free code. Finally, as someone above mentioned, do not use anything that is browser, platform, or language specific.
Cheers!