Archived topic
Rendering problem
7 replies · Started by Philippe on July 6, 2015
Hello Tom,
Since a recent up-date from the theme, I have a chart rendering issue on this page in which I imported two tables from "LibreOffice Clac" (the Edges appear) :
Best regards.
Hi Philippe,
Sorry about that - this is a known bug that has been addressed. Just waiting on the new version to be approved.
For now, this should help: http://generatepress.com/forums/topic/layout-after-upgrade/#post-117366
Hi Tom,
Unfortunately the code :
table {
table-layout: auto;
}
does not solve the problem.
Best regards.
So what's that table supposed to look like? I notice you're using spaces to separate the two columns instead of using another <td>, which would work a lot better.
As explained above I imported data from this site from the Open Office spreadsheet.
When I did it made, the rendering which was perfect without borders. Since the last update of the theme a edges and unwanted separations is appeared.
I tried your code without success, what should I do to remove the edges and separations?
Ah, to remove the borders you can do this as well:
table, th, td {
border: 0;
}
So your code would be:
table {
table-layout: auto;
}
table, th, td {
border: 0;
}
That should bring it back to the way it was before tables had any styling at all.
Tks it's the ideal solution :)
Perfect :)
