MyBB Community Forums

Full Version: Image background to category titles - Screenshot included
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: backem.png]

I've looked at a couple of other forums and have seen that thead_bg is usually the image used as the background but for some reason my theme doesn't have that and it just uses the regular background of the container. Where exactly in global.css do I need to put the background attribute with the image name to have the image as the background instead of just the container background?
.thead

find it.
(2011-04-04, 01:42 AM)zZJoennZz Wrote: [ -> ].thead

find it.

I just checked and surprisingly thead_bg.png, which is the image I want shown, was already there. Could you think of any reason why it isn't showing up? I tried thinking of something but I couldn't.
Never mind, I figured it out, I just needed to remove top left no-utationrepeat.

Thanks for the help.
In ACP>Themes and templates> Your theme>global.css;

Find:

.thead

After something like this:

background: #000000

Add something like:

url(images/yourtheme/thead_bg.gif)

So it would look like:

background: #000000 url(images/yourtheme/thead_bg.gif) top left repeat-x;


and that should solve it.
(2011-04-04, 04:02 AM)crazy4cs Wrote: [ -> ]In ACP>Themes and templates> Your theme>global.css;

Find:

.thead

After something like this:

background: #000000

Add something like:

url(images/yourtheme/thead_bg.gif)

So it would look like:

background: #000000 url(images/yourtheme/thead_bg.gif) top left repeat-x;


and that should solve it.

I got it before but thank you, I appreciate the help.