MyBB Community Forums

Full Version: Making it go center.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i would like to make it go center correct way, on a big screen computer its messt up on small screen its k

http://prntscr.com/9va80r


any fixed you see in my css that can fix this issue? to make it go center correct way, both the logo and the menu

.menu {
 width: 574px;
min-width: 574px;
max-width: 574px;
margin: 30px 0px 0px 290px;
padding: 50px 0px 0px 15px;
box-sizing: border-box;
}

.logo {
 float: right;
width: 290px;
min-width: 290px;
max-width:1900px;
height: 63px;
min-height: 63px;
max-height: 200px;
background: url(images/megabg/logo.png) no-repeat;
padding: 0px;
margin: 0px;
transition: all 0.3s ease;
}
This should work, not sure about the rest of your CSS.

.menu {
margin: 0 auto;
text-align: center;
padding: 50px 0px 0px 15px;
box-sizing: border-box;
}