Hi Stefan,
I’ll answer in English, as this is a policy here in the forums. I hope that’s ok for you.
As weird as it may sound, the gray border you are seeing is the background color of the table “shining” through. To remove it, just change the background color to white on these tables, with this CSS code, which needs to be entered into the “Custom CSS” textarea on the “Plugin Options” screen:
.wp-table-reloaded-id-123 {
background-color: #ffffff !important;
}
(Adjust the ID as necessary.)
Regards,
Tobias
Hi Tobias,
thank u very much for your quick reply.
Unfortunately it doesn´t work.
I entered the code but it´s still shining.
But, i didn´t change the id, because i don´t now what that is 🙁
The id is the title of the post ?
I am still learning.
F.e. i change the width of the column with that:
.wp-table-reloaded .column-1 {
width: 55px;
}
and this is working.
Strange !?
Hi,
without changing the ID, this won’t work of course 🙂
The ID is the number that each table has, its “identifier”. It is the number that you are using in the Shortcode to add that table to a page or post. For your tables, the IDs are 5, 6, 7 and 8.
Now, as you are already doing this with the column width, we can also do this for the background color: If you leave out the “-id-123” part in the CSS code, the command will apply to all tables on your site at the same time. (So, you might have to be careful with this in the future, if you add further tables somewhere, which have a different structure.)
To do that, just use
.wp-table-reloaded {
background-color: #ffffff !important;
}
Regards,
Tobias
TADAA !
It´s working ! And i learned something !
Thank u very much and best from vienna,
Stefan
Hi Stefan,
no problem, you are very welcome! 🙂
Best wishes,
Tobias