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]](https://camo.mybb.com/bd4a9dcfc29d0754cb8fa60ba64c80c002b1b03b/68747470733a2f2f7331332e706f7374696d672e6f72672f34726b6573343838332f696d6167652e706e67)
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