MyBB Community Forums

Full Version: How would I add an image to a category
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

So I was wondering if I could achieve the 'Play Now' button thing at the top of this vBulletin forum, in my own MyBB forum.

Play Now Example

MY Forum

I have tried searching for it around google and here, but I could not seem to find anything.

All help is apprectiated!

Thank you for your time.

-Ash
Hello,

You would edit the "header" template Smile
Here is a tutorial for you: http://community.mybb.com/thread-127085.html

An easier one to follow can be found here: http://community.mybb.com/thread-78062.html

Thanks.
(2013-06-13, 10:51 PM)Conor C. Wrote: [ -> ]Hello,

You would edit the "header" template Smile
Here is a tutorial for you: http://community.mybb.com/thread-127085.html

An easier one to follow can be found here: http://community.mybb.com/thread-78062.html

Thanks.

Sorry for the confusion, I mean the image of 'play now'. There is a category with a 'play now' image inside it, no threads ect. Is this possible inside of MyBB.

Thanks for you support.

-Ash
Hello,

Sorry about that!

It is possible by editing the "index" template from your MyBB AdminCP (under templates).

Add the following code after {$header} in the index template.

<table border="0" cellspacing="1" cellpadding="4" class="tborder">
<thead>
<tr>
<td class="thead" colspan="5"><strong>TITLE HERE</strong></td>
</tr>
</thead>
<tbody style="" id="cat_1_e">
<tr>
<td class="trow1" colspan="5">YOUR CONTENT HERE</td>
</tr>
</tbody>
</table>
<br />

Thats a very quick solution I came up with. It works but probably isn't the tidiest Toungue
(2013-06-13, 11:15 PM)Conor C. Wrote: [ -> ]Hello,

Sorry about that!

It is possible by editing the "index" template from your MyBB AdminCP (under templates).

Add the following code after {$header} in the index template.

<table border="0" cellspacing="1" cellpadding="4" class="tborder">
<thead>
<tr>
<td class="thead" colspan="5"><strong>TITLE HERE</strong></td>
</tr>
</thead>
<tbody style="" id="cat_1_e">
<tr>
<td class="trow1" colspan="5">YOUR CONTENT HERE</td>
</tr>
</tbody>
</table>
<br />

Thats a very quick solution I came up with. It works but probably isn't the tidiest Toungue

Thank you very much friend! Smile

I will give this a try!

-Ash