Site logo

Archived topic

Rendering problem

7 replies · Started by Philippe on July 6, 2015

Viewing posts 1–8 of 8

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) :

http://www.point6.ch/tarifs/

Best regards.

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 :)

This archived topic is closed to new replies.