Hi,
thanks for your post, and sorry for the trouble.
Essentially, you will have to add a CSS border radius to the first and last cell of each row, e.g. with a CSS approach like https://ww.wp.xz.cn/support/topic/border-radius-box-shadow-problem/
Can you maybe try that?
Regards,
Tobias
Hello,
Thanks for fast response. I have read that article and I tried once more to add CSS border radius just as they are there but it won’t help on my situation.
I tried to add those rows into the WordPress->Customize section, into Tablepress -> Plugin Options and also into the Theme’s custom CSS section.
I tried to add !important at the end of the line but it didn’t help either.
Hi,
please remove that large chunk of CSS code where you set the height, background color and border for the many rows of the table.
Then, add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:
.parhaatkasinot-taulukko {
border-collapse: separate;
border-spacing: 0 10px;
}
.parhaatkasinot-taulukko td {
height: 150px;
border: none !important;
background-color: #ededed;
}
.parhaatkasinot-taulukko td:first-child {
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
}
.parhaatkasinot-taulukko td:last-child {
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
}
Regards,
Tobias
Hi,
no problem, you are very welcome! 🙂 Good to hear that this helped!
Best wishes,
Tobias
P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!