MyBB Community Forums

Full Version: Optimised theme, adding h1, h2 ... tags
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys, i wanna add some tags to my template.

I would like to add some tags to the category title
To title, thread title. Could you help me ?


Here some pics , where and what i want.

[Image: ss1ll.jpg]

[Image: ss2rx.jpg]

[Image: ss3jlq.jpg]

Is it possible ?

My forum is : http://dev.prozone.ro/mybb

Thanks~

Go to AdminCPanel:
> Configuration > General Configuration > Server and Optimization Options
Output template start/end comments?
>YES

Then it will show you the Templates names in HTML Source code (ACP > Templates & Style > Templates > Your theme templates)
Ok, i know where to add them, but if i change them, the titles are "growing", they are bigger, i want to remain the same.

What should i add to css ?
h1 {
/* CSS for h1 */
}
I want to be the same size, font.

I added :
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

And know the height is bigger or something, look in the pic :
[attachment=24197]
h1 {
    font-size: 13px;
    margin: 0;
}
No.
It's :
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
    display: inline;
} 

Thanks anyway.
I've done all of them.
Raoul can please post the codes that you add and the templates as i want to do this on my forum.

Thanks
J
.thead H2 strong { style here}

The Main problem in using headers from wp layouts to normalize a site layout (in mybb) is the absence of a "Reset.css". You could face problems like this one all the time when formatting.
And where to get the reset.css ?