MyBB Community Forums

Full Version: How to change order of row layout on forum display page ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Beginner question...
How to change layout of forum display page per attached screenshot ?
Where to look for source of info on how ?
on the forumdisplay template find {$usersbrowsing} ; move it to the required position ..
(2011-12-31, 03:09 AM)ranjani Wrote: [ -> ]on the forumdisplay template find {$usersbrowsing} ; move it to the required position ..

Thank you for the reply and info.
Looked at that template (below) earlier and could not figure out where to move the {$usersbrowsing} variable to make (trial and error) rearrange the display.

Quote:<html>
<head>
<title>{$mybb->settings['bbname']} - {$foruminfo['name']} </title>
{$headerinclude}
{$rssdiscovery}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$moderatedby}
{$rules}
{$usersbrowsing}
{$subforums}
{$threadslist}
{$footer}
</body>
</html>
That should be the right place to put it. Or move it just below {$header}