MyBB Community Forums

Full Version: Centering buttons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
See the picture attached, i want to center the buttons into the middle.

My second bar looks like this

.secondbar {height: 40px; color: #434343; position: absolute; left: 0; bottom: 0px; width: 100%;text-align: center;}

Struggling to see why it's not working!

JK
ACP ==> Templates & Styles ==> Templates ==> Your Template ==> Header Template ==> header
now you will have something simillar as this
<ul>
                                        <li><button class="button"><a href="http://nc-gamingshop.gegahost.net">Shop</a></button></li>
<li><button class="button"><a href=http://nc-gaming.gegahost.net/showteam.php>Staff Team</a></button></li>
					<li><button class="button"><a href="{$mybb->settings['bburl']}/search.php">{$lang->toplinks_search}</a></button></li>
					<li><button class="button"><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></button></li>
					<li><button class="button"><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></button></li>
					<li><button class="button"><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></button></li>
</ul>
Just go to the top of the list that u have and make osmething simillar as this
<ul>
<div align=center>
                                        <li><button class="button"><a href="http://nc-gamingshop.gegahost.net">Shop</a></button></li>
<li><button class="button"><a href=http://nc-gaming.gegahost.net/showteam.php>Staff Team</a></button></li>
					<li><button class="button"><a href="{$mybb->settings['bburl']}/search.php">{$lang->toplinks_search}</a></button></li>
					<li><button class="button"><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></button></li>
					<li><button class="button"><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></button></li>
					<li><button class="button"><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></button></li>
</div>
</ul>

NOTE: The Codes above ARE NOT the same as yours , but you will have a list simillar as this put <Div align=center>after <ul> and before </ul> and </div>