tags:

views:

50

answers:

2

{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 :)

+1  A: 

You have forgotten the </a> ending tags for the links.

Guffa
No I haven't. ??<a href=""><img id="slide-img-1" src="i/cont-1.jpg" class="slide" alt="" /></a>
Jordan
@Jordan: That's the images. The links are created in the jQuery code.
Guffa
+2  A: 

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>');
random