Opened 16 years ago

Last modified 13 years ago

#2346 confirmed Bug

Numbered list problem

Reported by: Anderson Gomes Owned by:
Priority: Normal Milestone:
Component: Core : Lists Version: 3.0
Keywords: Cc: andersongomesu@…

Description (last modified by Krzysztof Studnik)

Hi,

I have been having a bit of a problem in using numbered lists in FCKEditor.

I can create multiple lines of text, then select this text and click on numbered list icon on tool bar and convert the text to numbered list. So far so good, every thing appears to work fine.

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:

<ol type="1" start="1">
<li><font size="4">This is item number 1</font></li>
<li><font size="4">This is item number 2</font></li>
<li><font size="4">This is item number 3</font></li>
</ol>

How can I get the font selection to be applied as:

<font size="4">
<ol type="1" start="1">
<li>This is item number 1</li>
<li>This is item number 2</li>
<li>This is item number 3</li>
</ol>
</font>

Thanks,

Anderson Gomes

Change History (2)

comment:1 Changed 16 years ago by Artur Formella

Component: GeneralCore : Lists
Keywords: Confirmed added; Numbered list removed

comment:2 Changed 13 years ago by Krzysztof Studnik

Description: modified (diff)
Version: 3.0

Confirmed also for CKE3.6.2Trunk.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy