By Vincent Robert on Monday, 30 May 2016
Posted in General
Replies 7
Likes 0
Views 630
Votes 0
Whenever I try to center a numbered list, the numbers do not center with the text. I can't get the numbers to center with everything. How can I do this? Please see screenshot
attached
·
Monday, 30 May 2016 23:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Urzh,

I am sorry for the delay of this reply,

Can you provide us with your Joomla backend and FTP access so we can better have a look?
·
Tuesday, 31 May 2016 17:24
·
0 Likes
·
0 Votes
·
0 Comments
·
I could, but I'd like to understand what you will be checking first. Will you be looking at the formatting for editor?
·
Wednesday, 01 June 2016 00:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Attached is my editor settings
·
Wednesday, 01 June 2016 00:26
·
0 Likes
·
0 Votes
·
0 Comments
·
I've checked again on my locally regarding this issue, it seems like this issue is not related Easyblog.

You can take a look of my attached screenshot below, that screenshot is what I tested in Joomla creation article page and using JCE-editor and I can replicate this issue as well.

It would be best if you can consult this issue with JCE editor developer regarding this.

By the way, to quick fix you have to click on `toggle editor link` from the editor then manually add this css into the numbering code, you can refer on my following example :

// Original align to center
<ol>
<li style="text-align: center;">asdasd</li>
<li style="text-align: center;">asdasd</li>
<li style="text-align: center;">asdasd</li>
<li style="text-align: center;">asdasd</li>
</ol>

// Replace these following code
// Just need to add extra css style code in the following
// list-style-position: inside
<ol>
<li style="list-style-position: inside; text-align: center;">asdasd</li>
<li style="list-style-position: inside; text-align: center;">asdasd</li>
<li style="list-style-position: inside; text-align: center;">asdasd</li>
<li style="list-style-position: inside; text-align: center;">asdasd</li>
</ol>


So that it will appear on the center with the numbering together.
·
Wednesday, 01 June 2016 00:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks. I did play around with the JCE editor options but made no differences. I will reach out to JCE support and see what they say.

Does EasyBlog officially support an editor and if so which?

Thanks!
·
Wednesday, 01 June 2016 01:28
·
0 Likes
·
0 Votes
·
0 Comments
·
You're welcome

Currently I only know 2 common editor (Tiny-mce, JCE editor) which support in Easyblog.
·
Wednesday, 01 June 2016 16:50
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post