Opened 18 years ago
Closed 17 years ago
#427 closed Bug (fixed)
Bulleted lists don't align properly in Firefox
Reported by: | Mike Koepke | Owned by: | Martin Kou |
---|---|---|---|
Priority: | Normal | Milestone: | FCKeditor 2.5 Beta |
Component: | Core : Styles | Version: | SVN (FCKeditor) - Retired |
Keywords: | Confirmed Firefox | Cc: |
Description (last modified by )
Centering and right justifying a bulleted list doesn't behave properly in Firefox. IE7 worked correctly.
Using the test site:
- Create a simple bulleted list. Hit UL on toolbar
- Enter line 1, enter, line 2, enter, line 3, line 4
- Highlight the list and hit Center Justify. Line x test is justified but bullets remain left justified.
- Source created:
<ul> <li> <div align="center">Line 1</div> </li> <li> <div align="center">Line 2</div> </li> <li> <div align="center">Line 3</div> </li> <li> <div align="center">Line 4</div> </li> </ul>
- Repeating to right justify. Text is correctly right justified but bullets stay left justified.
Note: Make sure that the browser cache is cleared before trying to reproduce.
Change History (7)
comment:1 Changed 18 years ago by
Milestone: | FCKeditor 2.4.3 |
---|
comment:2 Changed 18 years ago by
Keywords: | Confirmed Firefox added |
---|---|
Milestone: | → FCKeditor 2.5 |
comment:3 Changed 18 years ago by
Component: | General → Core : Styles |
---|
comment:4 Changed 17 years ago by
Description: | modified (diff) |
---|---|
Owner: | set to Martin Kou |
Status: | new → assigned |
Tidied up the description.
comment:5 Changed 17 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Fixed with [804].
Click here for more info about our SVN system.
comment:6 Changed 17 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
The justify commands don't work when multiple blocks are selected after [804], reopening ticket.
comment:7 Changed 17 years ago by
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
Fixed with [807].
Click here for more info about our SVN system.
Confirmed with FF2. Ok with IE6.
Both browsers (IE and FF) produce the same HTML in this case. The problem here is the way FF renders that HTML, which differs from IE. So, this is, for now, a browser compatibility issue.
The solution for it would be making
<li style="text-align:center">
instead.Let's see if the new Styles System will help us solving this issue.