XF 2.1 HTML not showing properly in Forum Descriptions

LenKaiser

Active member
I have created a few css classes that are specific to my forum.

I've put this code in the Extra.Less template:

CSS:
/*SPECIAL FONT MARKUPS*/

.boldred {
    font-weight:bold;
    color:red;
}
.boldpurple {
    font-weight:bold;
    color: #9704b6;
}
.boldyellow {
    font-weight: bold;
    color: yellow;
}

Then in my descriptions I call this code:

Code:
Here is some <span class="boldred">information</span> for the site.

My description is not rendering the span tags. Is there a reason for this? As far as I know using span tags inside a paragraph tag works just fine. I was able to create a link in one of the descriptions so the HTML works it just does not want to do the span tags. How can I get it to render the code?
 
Back
Top Bottom