MyBB Community Forums

Full Version: Logo repeating?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Would anyone know how to prevent the logo on my forums from what seems to be repeating? Forum link here.

Thanks! Smile
In your CSS, find:

.logo {
min-height: 170px;
background-image: url(images/logo.png);
}

Replace with:

.logo {
min-height: 170px;
background-image: url(images/logo.png) no-repeat;
}
Thanks, I'm using that change right now but it seems the logo has disappeared completely.
Oh, sorry, you were using the background-image property. Replace it with this instead:

.logo {
min-height: 170px;
background: url(images/logo.png) no-repeat;
}
(2011-07-04, 01:56 PM)faviouz Wrote: [ -> ]Oh, sorry, you were using the background-image property. Replace it with this instead:

.logo {
min-height: 170px;
background: url(images/logo.png) no-repeat;
}

Success! Thanks! +rep
EDIT: Any idea how to remove the hyperlink to my website that sites above my logo by chance?
You mean the broken image a little bit up the logo? In your header template find this (not exactly this, I'm copying it from the source code):

<div class="logo"><a href="http://www.xomby.org/index.php"><img src="http://www.xomby.org/" alt="xomby.org" title="xomby.org" /></a></div>

Replace with:

<a href="http://www.xomby.org/index.php"><div class="logo"></div></a>
Thanks that did the trick!