MyBB Community Forums

Full Version: Which Template / Whats the name?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
As the image below illustrates, I'm trying to add a gradient background image which repeats on the X axis to the bottom of the forum sections view. However, I can't figure out which template holds the codes for the forum section view. If someone can tell me the name of the template I'll really appreciate it.

[Image: piccc.png]
In global.css , search for the ".tborder" style.
(2011-04-23, 05:05 PM)Yaldaram Wrote: [ -> ]In global.css , search for the ".tborder" style.

I added the css below to the Global.css and nothing worked.

.tborder {
	width: 100%;
	
	margin: auto auto;
	
	-moz-border-bottom-left-radius: 5px;
	
	-webkit-border-bottom-left-radius: 5px;
	
	-moz-border-bottom-right-radius: 5px;
	
	-webkit-border-bottom-right-radius: 5px;
	
	border-bottom-color: 297bb2; 

}
No, you should be looking for the .thead class. To add a similar bar to the bottom follow these steps:

1. Admin CP > Templates & Style > Templates > Your Template Set > Forum Bit Templates > forumbit_depth1_cat.
2. Before </tbody> add:

<tr><td class="thead" colspan="5">&nbsp;</td></tr>

3. Replace &nbsp; with your own content, or leave it in blank.

Alternatively, you can use tfoot instead of thead which is similar to thead but the background is upside down.
@faviouz: that's indeed what OP is asking Smile But don't forget to add a row and not only a column and it should be within the <tbody> tag.

So before </tbody>, add:
<tr><td class="thead" colspan="5">&nbsp;</td></tr>
You're right, thank you. I have corrected my post. Smile
Thanks guys