MyBB Community Forums

Full Version: Logo & background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
1. I installed theme called 'Tema' (http://mods.mybb.com/view/tema). How can I move the logo higher in it? Can't find the solution neither in templates nor in CSS files.
2. Is it possible to make the background image move together with scrollbar?
For the logo, just find its div or container and add some margins to it.

As for the scrolling background image, I'm not quite sure what you mean. If the image is of a certain height, it will stop displaying at some point - unless you repeat it, which looks a little bad.
Can't find it anywhere in CSS, just found these and first changes the logo background, second entire page excluding background.

.logo {
	background: #232323 url(images/tema/header.jpg) top left repeat-x;
	border: 0px solid #000;
	border-bottom: 0;
	height: 123px;
}

#container {
	background: #232323;
	border: 1px solid #999;
	margin: auto auto;
	padding: 20px;
	text-align: left;
	
	color: #999;
	width: 74%;
}

In div there is only this and I don't know what to do with it. Do I need to create new class for this img or something?

<div class="logo"><center><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" 

Scrolling background - I mean a background which will scroll together with scrollbar, just one not repeating. I saw some commercials are done that way.