I created a style .tt{...} to replace the <tt> tag (since I didn't see how to enable the button on the toolbar). However, if I select a portion of a paragraph, the Add CSS Class menu adds the class in a font tag which is non-compliant and nasty. How do I overide and make it use a span tag?
Format now:
<p>This is my <font class="tt">monospace text</font></p>
Desired format:
<p>This is my <span class="tt">monospace text</span></p>
Format now:
<p>This is my <font class="tt">monospace text</font></p>
Desired format:
<p>This is my <span class="tt">monospace text</span></p>