I am trying to make my logo image responsive on my page. I used the created a responsive class and in the stylesheet set the width of that class to max-width 100%, but the image still isn't scaling when I resize the browser.
HTML part:
<div align="center" class="div3">
<img src="http://www.revolutionvinyl.net/rvgglitch.gif" width="700"
height="700" class="responsive" alt="RVG Logo">
</div>
CSS part:
.responsive {
max-width: 100%;
display: block;
height: auto;
}
Thank you in advance! This site has been driving me crazy, so this fix will help out a lot.