HI,
You can't do this automatically. You will have to add a class to all the anchors that contain images and remove the background.
e.g.
Code:
.entrytext p a.noimg{background:none}
Code:
<a class="noimg" href="etc........
You could try something clever like moving the image so that it hides the link image but I don't know how successful it will be and whether results will be reliable cross browser. It also assumes that you only have those largish images to cater for.
Code:
.entrytext p a img{
display:inline;
margin-left:-13px;
position:relative;
left:33px;top:30px;
margin-top:-15px
}
The best solution is to add the class as I have shown earlier.
Bookmarks