Hi Alix,
Is it a public site ? If you post the link we might find some CSS tricks.
Pascal.
It’s a gaming site – can make one forum dummy and make it public with a test post?
Welcome, Killer
I’ve created a test forum and put in a dummy post – the others are restricted access atm but in the test forum you should see a post that is cropped
Some themes are not handling well the replies. Could you try to add this somewhere as extra css:
#bbpress-forums .reply {
font-size: inherit;
padding: inherit;
position: relative;
right: inherit;
top: inherit;
}
Pascal.
Thanks Pascal – tried adding that as custom CSS – as you can see on the right hand side of this post http://casteofassassins.com/forums/topic/test-topic – the overflow is still being hidden on the right hand side of the post?
There is an issue with the .hentry class that bbPress is inheriting for its posts. This is a common theme conflict.
#bbpress-forums .bbp-body .hentry {
margin: 0;
}
awesome fix – thanks you!