MyBB Community Forums

Full Version: H1 H2 and more tags
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there an easy way to make thouse tags the same size in css as normal
text size?
Open your theme's global.css and search for these classes, and edit them according to your needs.
(2012-04-11, 05:40 PM)Yaldaram Wrote: [ -> ]Open your theme's global.css and search for these classes, and edit them according to your needs.

Well that I have tryed about 1000 times, should I scange the hr?
Or is it not possible to see thouse in ACP?
Add in the class, it wont be there by default. Go to your global.css, go to the very bottom, and add:

h1 {
text-size: 15px;
}

h2 {
text-size: 15px;
}

Obviously edit the text size to whatever you want.
You can define these classes in global.css like this;
h1, h2, h3{
font-size: 11px;
color: #000000;
}

Now all these three's have the same font size and color when you use;
<h1>Yaldaram</h1>
<h2>Yaldaram</h2>
<h3>Yaldaram</h3>
Thanks bouth