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)

#103659 Bilder werden falsch dargestellt

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 arsito on Monday, 30 March 2020 12:37 BST

arsito
Hallo,

könnte mir bitte jemand helfen? In der Editoransicht sind die Bilder korrekt nebeneinander dargestellt. In der Betrachteransicht leider untereinander.
Ich nutze den aktuellsten JCE Pro.

Danke und Grüße
Melanie

Attachments

Ryan
Do the images show correctly in the front-end article when it is saved?

Ryan Demmer

Lead Developer / CEO / CTO

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

arsito
No, the first image show the editor-mode. The second image is the front-end when visitors look at the website 🙁 and I don´t know what can I do.
This is my example site

Ryan
The problem is caused by the following css rule on line 56 of your template's template.css file, in particular the display:block style.

img {
    display: block;
    max-width: 100%;
    height: auto;
}
Go to Extensions -> Templates, and click on the name of your template to edit it. Click on the Template Options button, then on Custom Code. In the Custom CSS field, add

img {
    display: inline-block;
}
Save.

Ryan Demmer

Lead Developer / CEO / CTO

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

arsito
It works ... thank you 🙂