MyBB Community Forums

Full Version: Background + Header.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I fix following problems?
http://i.minus.com/itaYZpUPOHMut.jpg


Forum link: http://www.originalforums.com/

Fixed:
Here is an answer, might help to someone else with same or similar problem:

#container {
	background: #fff url(http://i.minus.com/ipTq8673kMPe5.png) top left repeat-y;
	width: 979px;
	color: #000000;
	padding: 0;
	text-align: left;
        margin: auto;

Background color was #fff which is white, and that is the reason why there was tinny white line.

All I had to do it change from #fff to #ececec





And to remove Text at my logo, I had to do following:

<a name="top" id="top"></a>
<div id="container">
<div id="logo">
<span class="name">
[b]<a href="{$mybb->settings['bburl']}/index.php"</a>[/b]
</span>

However, I still need header to be clickable, and I'm not sure how to do it.