MyBB Community Forums

Full Version: Scroll Bar HELP
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I add the scroll bar (image) in the portal announcement?
What code I have to add?
[attachment=16916]
(For more info: http://spicefuse.com/)
Open your theme's portal_announcement template and find following line:
<p>
				{$message}
			</p>

Replace with following:
<p style="height: 175px; overflow: auto;">
				{$message}
			</p>

And it's done.
Thank you mate!
Thank you VERY MUCH.