I cannot seem to get the border around the title and elephant elements to go away in IE. Seems to work fine in chrome and Firefox. Does anyone understand why? Reasoning and answer would be much more helpful instead of just an answer. I also cannot get the borders of the elements to work in IE, however that is not as important to me right now. Thanks in advance.
Share
IE follows the web browser tradition of drawing a colored border around an image that is a link (technically, an
imgelement inside anaelement that has thehrefattribute). This was meant to make the user notice that the image is a link.To remove the border, use the attribute
border=0in theimgtag or use a corresponding CSS rule, likeimg { border: none }.