Just so images actually fit in sigs and don't overflow you could try editing your css like so.
edit ipb_styles.css
located here
http://forums.minega...tyle_css/css_1/ipb_styles.css
Padding creates space around content while
Margin creates space in content I think... or maybe it's the other way around...or they do the same thing...I can't remember...
Max-height is probably the main reason why signatures overflow in the first place though...
Try replacing
.signature {
color: #8e8e8e;
font-size: 11px;
border-top: 1px solid #d5dde5;
padding: 8px;
margin: 10px 10px 0px 6px;
max-height: 80px;
}
with
.signature {
color: #8e8e8e;
font-size: 11px;
border-top: 1px solid #d5dde5;
padding: 8px;
margin: 10px;
min-height: 80px;
}
^ that should work, but...you never know
OR you could be mean and add
overflow:hidden;
(which would crop whatever went past the
max-height)
.signature {
color: #8e8e8e;
font-size: 11px;
border-top: 1px solid #d5dde5;
padding: 8px;
margin: 10px 10px 0px 6px;
max-height: 80px;
overflow:hidden;
}
OR you could add
overflow:scroll;
(which would crop whatever went past the
max-height and create a scroll bar so you can scroll down and see the rest... I think.)
.signature {
color: #8e8e8e;
font-size: 11px;
border-top: 1px solid #d5dde5;
padding: 8px;
margin: 10px 10px 0px 6px;
max-height: 80px;
overflow:scroll;
}
This post has been edited by Aspheric: 05 February 2011 - 06:35 AM