I am trying to hide a "required" message when the page is first shown. On FF and IE8 this works, but for some reason the message shows on IE7.
Here is the HTML:
<div id="passwordDivRequired" class="requiredMsg">
<img src="images/required.png" />
Required
</div>
And here is the CSS:
.requiredMsg img{
width: 1.5em;
height: 1.5em;
position: relative;
bottom: -.4em;
}
div .requiredMsg {
color: #BF5754;
display: none;
}