After noticing my website looked absolutely horrible in Firefox I went to work to remedy the problem(s). I have been able to make some headway basically making sure my pages are more strictly following the rules and correcting some issues with my style sheet. However, one or two issues I can't seem to figure: Links will not work in the top part of my page. For specific examples: http://www.erikfriedlander.com/info.htm (navigation links [NEWS | SEARCH | etc.] immediately on the bottom of the photo work, but the following links will not work) http://www.erikfriedlander.com/cello.htm (again..nav. links will work but in this case the following links start working after two "dead" links) Bigger problem here with the "red" column not working, links also a problem: http://www.erikfriedlander.com/projects.htm --no red background --links don't work at all CSS file: http://www.erikfriedlander.com/css/style1.css
Hi Arco Your position_top <div> (absolutely positioned) is obscuring your links in the redbox <div> (relatively positioned). The position_top has left and top values of 20px,20px and bottom and right values of 0,0 which basically covers the whole page save for a 20px top and left margin. Remove the bottom and right values in position_top and you'll be OK. Mick