MyBB Community Forums

Full Version: Make the " Header / Banner " Area bigger
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys I want to switch from phpBB to mybb
www.ksalue.com < Blog
www.ksalue.com/forum << PHPBB
www.ksalue.com/Forum2 << Mybb ( Press Refresh if it doesn't open )

Was wondering how can I make the header/logo/banner area bigger so i can sit up a logo I kept playing with the codes randmoly but nothing seems to work X_X

I am using this Style :
http://www.awesomestyles.com/mybb-themes/view/blackevo4

The Reason why I want to do the switch because MyBB looks nicer + has more built in features + looks nicer and more pro !

So I seriosuly Need to adjust this anyone got any tips for me ?:<

" And I do hope I posted in the Right Section "
Admin CP -> Templates & Style -> Themes -> *your theme* -> global.css -> Edit Stylesheet: Advanced Mode

Find:

.logo {
	width: 650px;
	height: 80px;
	position: absolute;
	margin-top: 15px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

Replace it with:

.logo {
	width: 420px;
	height: 129px;
	position: absolute;
	margin-top: 15px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

As you can see, I've only changed the height and width field according to your logo. It will look better this way. Wink

I think that you will also need to change this:

#logo {
	width: 100% auto;
	height: 95px;
	text-align: left;
	margin: 0;
	padding: 0 15px 10px 15px;
}

With this:

#logo {
	width: 100% auto;
	height: 129px;
	text-align: left;
	margin: 0;
	padding: 0 15px 10px 15px;
}
Thank you so much !