Re: Custom Font Face and Size Drop Down List Duplication When Customized

  •  03-15-2012, 9:12 AM

    Re: Custom Font Face and Size Drop Down List Duplication When Customized

    Hi cw808,
     
    1. Please use the  common.config
     
    2. You got the duplication because you have tow same <item> in the list. Please remove one of them.
     
     
      <FontSize>
       <item text="[[NotSet]]" value="null">
        <html><![CDATA[[[NotSet]]]]></html>
       </item>
       <item text="8pt" html="&lt;span style='font-size:8pt'&gt;8pt&lt;/span&gt;">8pt</item>
       <item text="9pt" html="&lt;span style='font-size:9pt'&gt;9pt&lt;/span&gt;">9pt</item>
       <item text="10pt" html="&lt;span style='font-size:10pt'&gt;10pt&lt;/span&gt;">10pt</item>
       <item text="11pt" html="&lt;span style='font-size:11pt'&gt;11pt&lt;/span&gt;">11pt</item>
       <item text="12pt" html="&lt;span style='font-size:12pt'&gt;12pt&lt;/span&gt;">12pt</item>
       <!-- <item text="12px" html="&lt;span style='font-size:12px'&gt;12px&lt;/span&gt;">12px</item>-->
       <item text="1 (8pt)" value="1">
        <html><![CDATA[<font size='1'>Size 1 </font>(8pt)]]></html>
       </item>
       <item text="2 (10pt)" value="2">
        <html><![CDATA[<font size='2'>Size 2 </font>(10pt)]]></html>
       </item>
       <item text="3 (12pt)" value="3">
        <html><![CDATA[<font size='3'>Size 3 </font>(12pt)]]></html>
       </item>
       <item text="4 (14pt)" value="4">
        <html><![CDATA[<font size='4'>Size 4 </font>(14pt)]]></html>
       </item>
       <item text="5 (18pt)" value="5">
        <html><![CDATA[<font size='5'>Size 5 </font>(18pt)]]></html>
       </item>
       <item text="6 (24pt)" value="6">
        <html><![CDATA[<font size='6'>Size 6 </font>(24pt)]]></html>
       </item>
       <item text="7 (36pt)" value="7">
        <html><![CDATA[<font size='7'>Size 7 </font>(36pt)]]></html>
       </item>
       <!--
       <item text="26px" value="26px">
        <html><![CDATA[<span style='font-size:26px'>26px</span>]]></html>
       </item>
       -->
      </FontSize>
     
    3. It looks different, I think because your developer (or some one) changed this file before. common.config.exclude should be the back up of this config file.
     
    Regards,
     
    Ken 
View Complete Thread