In IE the element with the link must have background in order to be clickable. Otherwise the mouse 'sees right through it'. Oddly though, we can give it a phony background image. Add this to the head of the page:
Code:
<!--[if IE]>
<style type="text/css">
#video {
background-image: url(not_a.gif);
}
</style>
<![endif]-->
That's it!
In an unrelated matter I noticed that there was some code that's no longer used that's causing a non-fatal error. It should be removed:
Code:
<!--home page custom JS-->
<link rel="stylesheet" type="text/css" href="/gallerystyle.css" />
<!-- Do not edit IE conditional style below -->
<!--[if gte IE 5.5]>
<style type="text/css">
#motioncontainer {
width:expression(Math.min(this.offsetWidth, maxwidth)+'px');
}
</style>
<![endif]-->
<!-- End Conditional Style -->
<script type="text/javascript" src="/motiongallery.js">
/***********************************************
* CMotion Image Gallery- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
* Modified by Jscheuer1 for autowidth and optional starting positions
***********************************************/
</script>
<!--image rotator-->
Additionally, jQuery appears twice on the page, and both are outdated versions. Change:
Code:
<script type="text/javascript" src="/jquery-1.2.6.pack.js"></script>
to:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
and get rid of the highlighted here:
Code:
<script type='text/javascript' src='http://scottburrows.com/wp-includes/js/l10n.js?ver=20101110'></script>
<script type='text/javascript' src='http://scottburrows.com/wp-includes/js/comment-reply.js?ver=20090102'></script>
<script type='text/javascript' src='http://scottburrows.com/wp-includes/js/jquery/jquery.js?ver=1.6.1'></script>
<script type='text/javascript' src='http://scottburrows.com/wp-content/plugins/easy-fancybox/fancybox/jquery.fancybox-1.3.4.pack.js?ver=1.3.4'></script>
Bookmarks