Thanks for this plugin, it works great.
Is there any way, however, to restrict the image size? If someone posts a large image it completely messed up my layout :(
Version: 0.7.1
Last Updated: 2006-10-30
Requires bbPress Version: 0.73 or higher
Compatible up to: 0.73





Thanks for this plugin, it works great.
Is there any way, however, to restrict the image size? If someone posts a large image it completely messed up my layout :(
Image size restriction has to be done either via javascript or via your own upload (something I am working on).
For now you can make sure large images don't mess up your layout by applying overflow:hidden; to the CSS - my educated guess would be to the .threadpost element, or #thread (or #thread li)
xD
Plugin works great for me except for one small problem (well, major in my case).
Whenever users post code in between backticks, as is the preferred method with bbPress, the code is deleted upon submission of the post form.
The easiest way to sort out image size problems is to add this code to your .css file:
.threadpost img
{
width:100%;
}
it'll limit the width of the image to the width of the thread post area.
You must log in to post.