Viewing 1 replies (of 1 total)
  • Hi. The problem is that you’ve put the link code outside the table that holds the data. That doesn’t work so well with IE and some other popular browsers. Here’s what you have:

    <li><a href="http://www.theimageoctopus.net/2007/07/23/9-digital-art/"> <table cellpadding="0"><tr><td><img src="http://www.theimageoctopus.net/wp-content/uploads/2007/07/911icon.jpg" alt="911icon" height="0" width="0" /></td>
    				<td>
    			9/!! DiGITAL ART -The Fire Man</td></tr></table></a></li>

    Here’s what you need to have to make this work.

    <li><a href="http://www.theimageoctopus.net/2007/07/23/9-digital-art/"><img src="http://www.theimageoctopus.net/wp-content/uploads/2007/07/911icon.jpg" alt="911icon" height="0" width="0" />
    			9/!! DiGITAL ART -The Fire Man</a></li>

    Notice I took out the table code entirely. You don’t need it. Instead, float your images left and set the mouseover background color in the LI. For instance:

    #recent-posts .img {
    float: left;
    padding-right: 10px;
    }
    
    #recent-posts li:hover {
    background-color: #CBFE33;
    }
Viewing 1 replies (of 1 total)

The topic ‘Recent Posts in IE’ is closed to new replies.