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.

#106485 Black line appears in article editor

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 blocka on Tuesday, 26 January 2021 19:59 GMT

blocka
When we add an image to an article, we sometimes see a black line appear in the editor. It isn't in the article source. I'm using Joomla 3.9.24 and JCE 2.9.1

Video link shows what I mean.

Any explanation for why this being shown (and how to get rid of it)?

Ryan
Does this happen only in the front-end or when editing in the admin as well?

Ryan Demmer

Lead Developer / CEO / CTO

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

blocka
It happens in both frontend and back end. Only appears when I click inside the editor:

https://www.dropbox.com/s/wyrbmn43a91xgg6/JCE%202021-01-26_10-51-36.MP4?dl=0

Ryan
I think this might be caused by some css in your template affecting a system linebreak element that is used to enable the cursor position. Never seen this before but there is a first time for everything!

Please send me a login - https://www.joomlacontenteditor.net/contact/site-login

Ryan Demmer

Lead Developer / CEO / CTO

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

Ryan
The issue is caused by this css rule on line 3 of templates/shaper_helixultimate/css/mycustom.css

:focus, #sp-ro-logo a:focus {
    outline: 2px solid #000 !important;
    border-radius: 2px !important;
}
perhaps change it to:

#sp-ro-logo a:focus {
    outline: 2px solid #000 !important;
    border-radius: 2px !important;
}

Ryan Demmer

Lead Developer / CEO / CTO

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

blocka
Thanks muchly! That does indeed resolve the issue 😃