Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Making Words with Special Characters Bold Reply To: Making Words with Special Characters Bold

#173003
Paulie_D
Member

CSS cannot detect content…it can only style it.

You would have to use JS/Jq to find words starting with # (not a good choice as i think it’s a reserved character) and then wrap them in a span, assign a class to those spans and then you can address them with CSS.

I’ll push this to the js area.