MyBB Community Forums

Full Version: Two quick theme edit questions.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all.

Could someone tell me where this background will be?

[attachment=24599]

Could you also point out how to change the top image into the bottom for the welcomeblock.

[attachment=24600]

Thank you.
1. Its a property called thead and on global.css, you can find it with name .thead .

2. Its panel.
Thanks.

Could you just explain to me this:

.thead {
	background: #026CB1 url(images/ex/thead_bg.png) top left repeat-x;

Why does it have a colour and an image property attached to it? Surely one is just overriding the other?
The colour is applied to any area that the image doesn't cover, it's usually assigned the same colour as the bottom pixel of the image when the image is fixed to the top.
You probably have two instances of {$welcomeblock} in header template.


(2011-11-04, 02:32 PM)david42 Wrote: [ -> ]Thanks.

Could you just explain to me this:

.thead {
	background: #026CB1 url(images/ex/thead_bg.png) top left repeat-x;

Why does it have a colour and an image property attached to it? Surely one is just overriding the other?

The image will be shown on top of the color. if for some reasons the image doesn't load, then the color will be shown.