Hi Leo
Your signature measures roughly 80px height.
To why it should be increased: Most boards have 150+px height. If I create a sig for those, it will be a pain in the ass to specifically create one for these. As I said, I misleadedly thought this board allowed 150px height. So I created a signature of 500x150, because this was the usual limit I found elsewhere. As I read RebelSean's post I noticed it wasn't, so I felt personal frustration. Later I was thinking in a way to solve it. Many use 150px high signatures (which is btw not too much, there's plenty of boards, as said, that allow 200px), so it would be good to find a workaround in the board, so that the sigs don't stretch the post down, which was for me the primary counter-argument I may have found.
I people don't want to see sigs because they have a low resolution or a slow connection, they can always disable them from the CP.
About the code:
I'm no CSS expert either, but as I see, Opera has a different concept of 'height' as Mozilla.
Disregarding which may be right and which one wrong I suggest the following:
Post template
code:
<div class="sigholder">
<div class="sigbody">
<!--Signature goes here-->
</div>
</div>
Style template
code:
.sigholder{
border-top: 1px dashed #000000;
padding-top: 10px;
padding-left: 0px;
padding-right: 0px;
margin-top: 10px;
width: 100%;
}
.sigbody {
border-size: 0px 0px 0px 0px
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
width: 100%;
max-height: 125px;
overflow: hidden;
height: expression(this.scrollHeight>125?"125px":"auto");
}
I haven't tested this but since Opera and Mozilla consider max-height to be different things, it's better restricting that to the actual signature (sigbody) which has no extra space for padding, border or margin.
Anyway... I see myself finally coming up with a smaller sig...