Ticket #2346 (new Bug)

Opened 5 months ago

Last modified 3 months ago

Numbered list problem

Reported by: anderson.gomes Owned by:
Priority: Normal Milestone:
Component: Core : Lists Version:
Keywords: Confirmed Cc: andersongomesu@…

Description

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

Changed 3 months ago by arczi

  • keywords Confirmed added; Numbered list removed
  • component changed from General to Core : Lists
Note: See TracTickets for help on using tickets.