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 Online

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

#116121 editor style don't work website side

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 Sunday, 11 February 2024 10:52 GMT

vicis
Hi, joomla 4, Helix ultimate I installed the latest pro version, it seems to work when I write the articles but on the site side I don't see the styles set in the editor, can you help me?
https://scuolasacrocuoreportici.it/scuola/index.php/editore-formativa/scuola-dellinfanzia

Ryan
it seems to work when I write the articles but on the site side I don't see the styles set in the editor, can you help me?
https://scuolasacrocuoreportici.it/scuola/index.php/editore-formativa/scuola-dellinfanzia


This link is giving a 404.

Ryan Demmer

Lead Developer / CEO / CTO

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

Ryan
Please post a screenshot of the styles you are seeing in the editor that are not displaying in the article.

Ryan Demmer

Lead Developer / CEO / CTO

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

vicis
in attach

Attachments

Ryan
The layout and styles in your screenshots look the same as the article.

I'm not sure what the issue is here, please explain further.

Ryan Demmer

Lead Developer / CEO / CTO

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

vicis
if you look carefully you do not see the bulleted list and if we use other editor keys they are not displayed on the website. see Attachment

Attachments

Ryan
The removal of the list style is caused by this css in https://scuolasacrocuoreportici.it/scuola/templates/oitech/css/custom.css

ul, li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
Change this to:

ul, li {
  padding: 0px;
  margin: 0px;
}

Ryan Demmer

Lead Developer / CEO / CTO

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

vicis
this solution of yours is not good, because it messes up other parts of the theme, see attachment

Attachments

Ryan
This is not a JCE issue, this is a mistake in your template custom.css file, which is removing global styling of list elements. If you have an issue with a particular list, you need to target that list using a specific selector in your custom.css file, eg:

ul.social-icon-one {
    list-style: none;
}

Ryan Demmer

Lead Developer / CEO / CTO

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