MyBB Community Forums

Full Version: Replace header with a full custom image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Could someone please tell me how to remove the grey area and have this custom image the full width please 

http://www.buschfinks.com/forums/

i would also like to know how to change the navigation menu ie text color and what they say and point to 


Thanks in advance
Go to admin control panel
Click Templates and style
click your theme template
click header Templates
click header

Find
 <a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>

Replace
 <a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}"width="100%" height="auto" /></a>

next step

go to theme sytles
and
find
#logo ul.top_links {
	font-weight: bold;
	text-align: right;
	margin: -10px 5px 0 0;
}

Replace
#logo ul.top_links {
	font-weight: bold;
	text-align: right;
	margin: 10px 5px 0 0;
}


after this your site look like as

[Image: image.png]
Thanks

That certainly does look a whole lot better


But quick question

Is it not possible to fill the entire area with this logo so the grey cannot be seen ?


Regards
^ in the header template of the theme you can replace
<div id="logo">
<div class="wrapper">
with
<div id="logo">
<div class="wrapper_header">

and that should result more width for the logo image
Awesome Thanks to the both of you