PDA

View Full Version : Too Much White Space Between Bottom of Post and Signature


Aros12
03-22-2016, 03:03 PM
Currently vBulletin puts a huge white space between the end of the post and the signature if the post is short. This looks really bad. Here is an example post which shows it:

http://www.hobbysquawk.com/forum/rc-airplanes/propeller-airplanes/1978-official-announcement-flightline-1600mm-p-38-lightning?p=21299#post21299

This was a known issue in vB v4 and was fixed by adding this code in additional.css:

/* move up signature */
.postbitlegacy .after_content {
clear:none; }

post was here: http://www.vbulletin.com/forum/forum/vbulletin-4/vbulletin-4-questions-problems-and-troubleshooting/351066-space-between-message-and-signature

Unfortunately that fix doesn't work in v5. Does someone know the current css code to get that working? It appears vBulletin starts the signature right next to where the location ends in the left blue bar. We want the signature to start right after the end of the text (maybe only one or two spaces.)

Thank you for any help!

Gio~Logist
03-22-2016, 03:22 PM
Add this instead

.post-signature {
clear: none;
}

Aros12
03-22-2016, 03:54 PM
Thank you!