I'm unable to move an inline style for my logo header on an html page to an existing css file. This is the original html:
HTML Code:
<div id="logo">
<span class= "greentext">
<a href="http://www.v7n.com/forums/index.htm" title="Text - Home">
<img alt="Atext Btext Ctext Dtext - Home" src="http://www.v7n.com/forums/javascripts/images/catalog/logo-text.png" style="margin-bottom: -0.9%"></a><br>Atext</span><span class= "bluetext"> Btext</span>
<p class= "whitetext">Ctext</p>
<p class= "bluetextsm">Dtext </p>
</div>
I added a class to the css:
.imgmargin {margin-bottom: -0.9%}
and replaced the inline style with class="imgmargin" to the html.
What am I doing wrong? Thanks!