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.

#111258 Spaces in line background color

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 thefbione on Thursday, 23 June 2022 13:47 BST

thefbione
Hi,
I have a little problem with line background color, since i am in Joomla 4.
As you can see in my screenshot, my line color is spitted by white spaces.

Is it a way to delete them and have a continuous line ?

Screenshot : https://ibb.co/Snjrt7x

Ryan
This is caused by the border-collapsed css style for tables. Try setting the following in your template stylesheet:

table td {
    border-collapse: collapse;
}

Ryan Demmer

Lead Developer / CEO / CTO

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

thefbione
Hi,
No it dos not work. I see it in the frontend with dev tool but that dos not make effect.

Ryan
Please post a link to an example 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.

thefbione
https://www.sdich.ch/ordre-du-merite

You need to login with credentials sent in the login contact page

Ryan
My mistake, the style should be applied to the table, not the cell, eg:

table {
    border-collapse: collapse;
}

Ryan Demmer

Lead Developer / CEO / CTO

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

thefbione
Hello,
Yes, it work like that. Perfect, thank you.