{link removed}
The purple links across the bottom of this gallery do not appear at all in IE7 nor is the text clickable.
I have exhausted Firebug and Google, any ideas would be appreciated :)
{link removed}
The purple links across the bottom of this gallery do not appear at all in IE7 nor is the text clickable.
I have exhausted Firebug and Google, any ideas would be appreciated :)
As mentioned by Guffa, you have forgotten the closing anchor tags when generating your slider navigation in the jQuery.
You'll need to tend to your scripts.js
file. In particular, on line 23:
$('#slide-nav')
.append('<a id="slide-link-'+i+'" href="#"
onclick="slider.slide('+i+'); return false;"
onfocus="this.blur();">'+(i+1)+'');
Add the closing </a>
$('#slide-nav')
.append('<a id="slide-link-'+i+'" href="#"
onclick="slider.slide('+i+'); return false;"
onfocus="this.blur();">'+(i+1)+'</a>');