Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Changing TM symbol in Visual Format
chriso
I'm running TS 5.5.2 and TS Templating 5.5.2 on Solaris.
When I use Visual Formating and insert a "TM" symbol it does so with these standard HTML tags:
<p><sup><small>TM</small></sup></p>
This messes up spacing on the generated HTML page especially if viewed on Netscape. What I would like is for "TM" to be inserted as charencoding such as:
™
Anyone know how to force Visual Format to do this?
I've already tried all the encoding values allowed under the clean section of the
/iw-home/httpd/iw/config/visualformatconfig.xml
Currently it is set like this:
<clean charencode="charref" cr="cr" lf="lf" showonsize="5000" preferfonttag="false" reducetags="true">
Thanks.
Find more posts tagged with
Comments
LooseCannon
The following works w/Teamsite 5.0.2 and should work w/TeamSite 5.5.2
Change
sHTML = '<sup><small>TM</small></sup>';
To
sHTML = '™';
chriso
Excellent! That worked perfectly.
For those of you keeping score at home that change was made in this file.
/iw-home/httpd/iw/ewebeditpro20/ewebeditproevents.js
Thanks LooseCannon!