[Resolved] Rendering problem

Home Forums Support [Resolved] Rendering problem

Home Forums Support Rendering problem

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #118932
    Philippe

    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.

    #118965
    Tom
    Lead Developer
    Lead Developer

    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

    #120569
    Philippe

    Hi Tom,

    Unfortunately the code :

    table {
          table-layout: auto;
    }

    does not solve the problem.

    Best regards.

    #120672
    Tom
    Lead Developer
    Lead Developer

    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.

    #120698
    Philippe

    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?

    #120700
    Tom
    Lead Developer
    Lead Developer

    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.

    #120704
    Philippe

    Tks it’s the ideal solution ๐Ÿ™‚

    #120710
    Tom
    Lead Developer
    Lead Developer

    Perfect ๐Ÿ™‚

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.