You need to be logged in to post in the forum - Log In

An active JCE Pro Subscription is required to post in the forum - Buy a Subscription

Support is currently Offline

Official support hours
Monday to Friday
09:00 - 17:00 Europe/London (BST)

Please create a new Ticket and we will get back to you as soon as we can.

#106973 List alignment

Posted in ‘Editor’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Latest post by Ryan on Wednesday, 05 May 2021 11:12 BST

van Gelder
Hi,

When i use the list option the alignment from a text wider than the page is not nice aligned.

. kjkjhfdkjhfkjh
lkdfglk

Instead of
. kjsdkjhkj
ljflakjdldkj

I know there is a way but i cannot find the answer.

Kind regards,
Danny

Ryan
Please post a link to an example list on your site.

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.

Ryan
The alignment is caused by this css rule on line 5698 of your template's template.css file:

.bd-tagstyles:not(.bd-custom-bulletlist):not(.shape-only) ul:not([class*="menu"]) li, .bd-bulletlist li {
    list-style-position: inside;
}
so you could change this to:

.bd-tagstyles:not(.bd-custom-bulletlist):not(.shape-only) .bd-bulletlist li {
    list-style-position: inside;
}

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.