MyBB Community Forums

Full Version: 2 Simple Edits
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm using the default MyBB theme.

How do I center the following two things at the bottom of my forum:

1. Log Out | Mark All Forums Read | Forum Team | Forum Statistics

2. New Posts | No New Posts | Forum is Locked

I am not very good with code so was not exactly sure where to put the <center> </center> tags.

Thanks in advance for any help.
Navigate to your themes templates > "Index" template and click on "index_Boardstats".

Find this:

		<span class="smalltext">
			{$logoutlink}
			<a href="misc.php?action=markread">{$lang->markread}</a> |
			<a href="showteam.php">{$lang->forumteam}</a> |
			<a href="stats.php">{$lang->forumstats}</a>
		</span>

Replace with this:

		<span class="smalltext" style="text-align: center;">
			{$logoutlink}
			<a href="misc.php?action=markread">{$lang->markread}</a> |
			<a href="showteam.php">{$lang->forumteam}</a> |
			<a href="stats.php">{$lang->forumstats}</a>
		</span>


Navigate to your themes global.cc > Advanced Style mode.

Find this:

.forum_legend dt {
	margin-right: 10px;
	float: left;
}

Replace with this:


.forum_legend dt {
	margin-right: 10px;
	float: center;
}
The first solution worked, but the second one did not. Are you sure that was the correct answer to the second question?
The second one is in ACP » Template Sets » (YourTheme) Templates » Edit Template: header_welcomeblock_member
(2010-01-29, 05:44 PM)Devilson Wrote: [ -> ]The second one is in ACP » Template Sets » (YourTheme) Templates » Edit Template: header_welcomeblock_member

Why would something in the footer need to be edited in the header?
Sorry i read it wrong, it in
(yourtheme) Templates » Edit Template: index_boardstats