I tried my first DIV website project. It was not easy. Really the multi browser compatibily has shooked me. And here is what I cannot solve myself and need yours help. Please go to this link below. http://www.hostcrafting.com/codeartsnepal/sag/ The page works well in IE, but when it comes to firefox or opera the hyperlink is not active. I have used three css files. http://www.hostcrafting.com/codeartsnepal/sag/styles/style.css http://www.hostcrafting.com/codeartsnepal/sag/styles/font.css http://www.hostcrafting.com/codeartsnepal/sag/styles/links.css Please help me why it is happhning. What is the problem ? May be css.
I found no problems with the links in Firefox. I do think you need to learn html. The markup has no relation to the meaning or the structure of the content, except, oddly enough, the table of jobs. Please be more specific, if I missed something. cheers, gary
verify the width of your DIVs and make sure they are not overlapping each other, disabled links is usually caused by overlapping DIV's. You may try to play around with the z-index of the DIV's in order to place them in the 3D space properly. Hope this help
Yeah ! I solved it. It was an overlaping div. I had one div(footer) with position as relative which made it overlapped with other one. Rather than playing on z-index in removed the position and it worked. Thanks Everyone