PDA

View Full Version : How to control post height / width


qubed
12-28-2012, 03:28 PM
Hi all,

I previously used a plugin that allowed the height of a post to be controlled - for example, if the post had a height of more than 1200px it would maintain the height within a scrollable type box.

Does anyone know of a plugin/hack or what this was? I am looking for something that is compatible with vb 4.2 - Cheers!

qubed

kh99
12-28-2012, 04:27 PM
I don't know what hack it was, but you could put something like this in additional.css:

.postcontent {
max-height:1200px;
overflow-y:auto;
}


It seems to work but I only tested it with my FireFox browser.

qubed
12-28-2012, 06:36 PM
Perfect! That does the trick and is also working on Chrome. Thank you so much for the help, sounds like what it probably was previously too.