Jordan
Jordan

Reputation: 119

IE7 CSS inconsistency

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

Upvotes: 0

Views: 98

Answers (2)

random
random

Reputation: 9955

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

Upvotes: 2

Guffa
Guffa

Reputation: 700342

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

Upvotes: 1

Related Questions