MyBB Community Forums

Full Version: Scrolling Posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How could I make it so each post in a thread and the op itself (that is long) has its own scrollbar?
What do you mean a scroll bar?
I mean like the bar on the right of your screen, that allows you to scroll up and down the page.

[Image: scrollbar1.gif]
Yes, I know what a scroll bar is. But what do you want to do with posts?
Add this to your global.css:

.post_body {
	overflow: auto;
	height: auto;
	max-height: 200px;
	display: block;
}

(change 200px to the max-height you want)
Awesome, now how do I make it bigger? Like it was on the example I showed you?
(2011-08-27, 11:23 AM)Charmz Wrote: [ -> ]Awesome, now how do I make it bigger? Like it was on the example I showed you?

(2011-08-27, 11:05 AM)faviouz Wrote: [ -> ](change 200px to the max-height you want)

That makes no difference, it looks the same.
change max-height to the maximum height you want to keep for the posts, e.g. 300px . posts greater than 300 px will show a scroll bar.
Pages: 1 2