Quote:
Originally Posted by Noerenberg
hi,
can you explain this for me?
|
Sure
In postbit.css template
find:
Code:
max-width: {vb:stylevar postbit_content_max_image_width};
_width: expression(document.body.clientWidth > {vb:stylevar postbit_content_max_image_width.Size}? "{vb:stylevar postbit_content_max_image_width}": "auto" );
Copy then go down and find:
Code:
/*signature */
.signature {
padding-top: 1em;
border-top: {vb:stylevar signature_border};
margin-top: 2em;
}
Replace with:
Code:
/*signature */
.signature {
padding-top: 1em;
border-top: {vb:stylevar signature_border};
margin-top: 2em;
max-width: {vb:stylevar postbit_content_max_image_width.Size};
_width: expression(document.body.clientWidth > {vb:stylevar postbit_content_max_image_width.Size}? "{vb:stylevar postbit_content_max_image_width}": "auto" );
}
The only downside to that is the image size set by the post image carries through the entire signature not just the image if one is contained within.