My code doesn't work as it should

slitharein

New Member
Messages
8
Reaction score
0
Points
0
Since this is not related to my previous thread, I'm making a new one.

I've made links in my menu with a small bit of tect slightly different than the other texts (except the Home link)
It looks and works like it should in firefox, but it doesn't work in internet explorer.

In internet explorer, the links don't work as they should. You can't left-click them to instantly link there. You can however right click them and open link.

I added the code to the site in an attachment (if that works).
Otherwise you can get the code from www.slitharein.co.cc

Help would be appreciated. Thanks in advance
 

Attachments

  • index.html
    4.7 KB · Views: 47

sourfacedcyclop

New Member
Messages
221
Reaction score
0
Points
0
Try replacing
Code:
	<a href=Home.html>  <div id="index-html-08"> 
		<img src="http://www.slitharein.co.cc/images/Home_08.gif" width="177" height="30" alt=""> </a>
	</div>
with...
Code:
	  <div id="index-html-08"> <a href=Home.html> 
		<img src="http://www.slitharein.co.cc/images/Home_08.gif" width="177" height="30" alt=""> </a> </div>
for your links. You aren't suppose to use links outside of divs.
 
Last edited:
Top