Read more link invisible on IE8?

Hey,

I am having a minor issue with a “Read more” link…

On this page:-

http://kidsunlimited.co.uk/

If you look at the “Latest news” section in Firefox you will see a Read more link, but it vanishes in IE8…

why does it do this?

Thanks again

Hi, you wrap a <p> inside of hte <span> (containing the read more link) isn’t enclosing the anchor because of the invalid markup.

A quick fix would be to give the anchor a relative position and that shows objects outside of a parent most of the time :slight_smile:

.slides li span a{position:relative;}

However a better fix would be to not have the block element (<p>) inside of the <span> and then it should work :). Untested though but with valid markup it should work :slight_smile:

Thanks :slight_smile:

You’re welcome :).