Topic: signature hr

Hi (: I have a problem with the signature hr line on my forum.

Example here:
http://www.ufocatcher.net/forum/viewtopic.php?id=261

in mozilla firefox it is centered (middle)

in IE it is normal alignment at the left

? This is strange because in Punbb forum (here) I see signature line aligned normally (left) in mozilla - so somewhere in my php there must be something wrong - but I can't find it...

I would like the hr alignment at the left for both browser types - can someone help me to find where to adjust this?

Thank you for your help.

Re: signature hr

You modified base.css and messed up a declaration related to the hr
FIND

DIV.postsignature HR {
    color: #FFFFFF
        MARGIN-LEFT: 0px;
    WIDTH: 200px;
    TEXT-ALIGN: left;
    HEIGHT: 1px;
    BORDER:none
}

REPLACE WITH

DIV.postsignature HR {
    MARGIN-LEFT: 0px;
    WIDTH: 200px;
    TEXT-ALIGN: left;
    HEIGHT: 1px;
    BORDER:none
}