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)
VisualFormat bug?
System
How do I remove the <font> tags from the VF since I am already using them in my CSS. They still keep apprearing. Any help on this?
Find more posts tagged with
Comments
jzhuang
You can modify visualformatconfig.xml file:
1. If you wan to remove all instances of a particular tag, do:
<clean ...>
<remove>
<tagelement>font</tagelement>
2. If you only want to remove tags that do not have any elements or attributes, do:
<clean ...>
<remove>
<tagwoattr>font</tagwoattr>
Give it a try.