Quote:
Originally Posted by Skandy I think it's a visibility style error (divs are all visible by default on IE6) but i can't find how to fix it.
Thanks for helping. |
It's not using a <div> tag though, so that can't be the reason. It's actually using a <span> tag. This is where the
error display is, located in
register_center.tpl:
Code:
<span class="error">{$error}</span>
By looking at the
main.css file, the
.error class isn't doing anything wrong, even for IE 6. This is what it shows:
Code:
.error {
color:#c00;
font-weight:700;
margin-top:10px;
border:1px solid red;
background:#FFC5BE;
padding:5px;
}
Not really sure what it could be. I suppose you could always add a
display: none; to the <span> tag in the register_center.tpl file as a replacement, but by doing such, I don't think any error message would show at all then.
I'm not really sure what else to tell you, because I can't duplicate what you're seeing.