I have both download pdf and a return to top button on a page of my site. They work perfectly in every browser except Internet Explorer. The strange thing is, if I use simply text, it works in IE. What's the deal??? Can anybody help me? My code is as follows:
CSS
.return_to_top{
float:inherit;
margin: auto;
padding-bottom:5px;
}
HTML for the button:
<div class="return_to_top"><a href="#wrapper"><input type="button" value="Return To Top" /></a></div>
HTML for the text:
<div class="return_to_top"><a href="#wrapper">return to top</a></div>