MyBB Community Forums

Full Version: Background colour
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hiya

I have managed to change the background colour of my forum but just under the logo there is still a little white line under it how can i re move it or change it to the rest of forum to fit in????

Screen shoot here.

[img][Image: background.png][/img]
in your header template, just below the logo code,
if you have a <br /> OR <br class="clear" /> then remove it
I have looked and this is all i have and dont see any of that code you said??

<div id="container">
<a name="top" id="top"></a>
<div id="header"><center>
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div></center>
Paste all code of your header template in:

[php]CODE HERE[/php]

format here.
<div id="container">
<a name="top" id="top"></a>
		<div id="header"><center>
			<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div></center>



<ul id="menu">
<li><a href="http://gdforum.net/portal.php" >Portal</a></li>
<li><a href="http://gdforum.net/misc.php?action=help" >Help</a></li>
<li><a href="http://gdforum.net/announcements.php?aid=3" >Board Rules</a></li>
<li><a href="http://gdforum.net/memberlist.php" >Members</a></li>
<li><a href="http://gdforum.net/search.php" >Search</a></li>
<li><a href="http://gdforum.net/showthread.php?tid=2" >Affiliate With Us</a></li>


</ul>


<hr class="hidden" />
		
                <br class="clear" />
		<div id="content">
			
			{$bbclosedwarning}
			{$unreadreports}<!-- ProfileComments -->
			{$comments_alert}<!-- /ProfileComments --><!-- NewFollower -->
			{$alert_suscribers}<!-- /NewFollower -->
			{$pending_joinrequests}
                 {$myshowcase_unapproved}{$myshowcase_reported}<navigation>
			

<hr class="hidden" />
			<div id="panel">
				{$welcomeblock}
			</div>
<br />
in menu.css find
ul#menu { width: 100%; height: 43px; background: #FFFFFF url(../../../images/blueysh/menu-bg.gif) top left repeat-x;

replace with :
ul#menu { width: 100%; height: 43px; background: #0079B2 url(../../../images/blueysh/menu-bg.gif) top left repeat-x;
Try replacing with this one? I don't think it works, but though try or just as Rajni said, try that thing so it won't remove but make the color similar to the menu color so it doesn't look different:

<div id="container">
<a name="top" id="top"></a>
        <div id="header"><center>
            <a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div></center>

<ul id="menu">
<li><a href="http://gdforum.net/portal.php" >Portal</a></li>
<li><a href="http://gdforum.net/misc.php?action=help" >Help</a></li>
<li><a href="http://gdforum.net/announcements.php?aid=3" >Board Rules</a></li>
<li><a href="http://gdforum.net/memberlist.php" >Members</a></li>
<li><a href="http://gdforum.net/search.php" >Search</a></li>
<li><a href="http://gdforum.net/showthread.php?tid=2" >Affiliate With Us</a></li>


</ul>


<hr class="hidden" />
        
                <br class="clear" />
        <div id="content">
            
            {$bbclosedwarning}
            {$unreadreports}<!-- ProfileComments -->
            {$comments_alert}<!-- /ProfileComments --><!-- NewFollower -->
            {$alert_suscribers}<!-- /NewFollower -->
            {$pending_joinrequests}
                 {$myshowcase_unapproved}{$myshowcase_reported}<navigation>
            

<hr class="hidden" />
            <div id="panel">
                {$welcomeblock}
            </div>
<br /> 
Bingo thank you ranjani now that looks much better.