MyBB Community Forums

Full Version: Moving Buttons Into Middle
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I already know the template location for this is header_welcomeblock_guest

But what code do i need to add to place the "login/register" button into the middle under my logo?

Thanks

JK
you can add text-align: center; or margin 0 auto for the class .secondbar in global.css
second bar looks like this..

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

where do i add that?

Edit, sorted. Thank you.
add it at the end like this.....

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