MyBB Community Forums

Full Version: Add a class <td class="trow1">
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to add classes?
You got <td class="trow1">, <td class="thead"> <td class="tcat"> etc.
You can modify them in mofify/delete them section.

But is it possible to add classes?
yes u can

in Admin CP > Themes > Modify / Delete > Edit theme

Scroll till the bottom, Additional CSS Attributes

There u may make ur own classes like this

.mine {
text-decoration: line-through;
font-weight: 300;
font-family: Arial, Helvetica, sans-serif;
background-color: #990000;
border: thin dotted #009900;
}

and may start using it as class="mine" in any template Smile


regards
Thanks al lot.