Changes between Initial Version and Version 2 of Ticket #2346
- Timestamp:
- Aug 11, 2011, 8:19:57 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2346
- Property Keywords Confirmed added; Numbered list removed
-
Property
Version
changed from
to
3.0
-
Property
Component
changed from
General
toCore : Lists
-
Ticket #2346 – Description
initial v2 6 6 7 7 Now if I select the items of the numbered list and change the font, only the font of the text that I had entered changes, but the font of the numbering (1, 2, 3, 4 etc appearing before each list item) stays as earlier. When I looked at the HTML source, I found that the font is getting applied to the content portion only (individually, inside the <LI> tag). For example, the source looks like: 8 8 {{{ 9 9 <ol type="1" start="1"> 10 10 <li><font size="4">This is item number 1</font></li> … … 12 12 <li><font size="4">This is item number 3</font></li> 13 13 </ol> 14 14 }}} 15 15 How can I get the font selection to be applied as: 16 16 {{{ 17 17 <font size="4"> 18 18 <ol type="1" start="1"> … … 22 22 </ol> 23 23 </font> 24 24 }}} 25 25 Thanks, 26 26