Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Johann Heyne

    (@jonua)

    Hello,
    The HTML is as it should. I think, the following styles in your stylesheet causing that frontend issue…

    
    // hides table rows 2,3,4,5
    tbody tr:nth-of-type(2) {
        display: none;
    }
    tbody tr:nth-of-type(3) {
        display: none;
    }
    tbody tr:nth-of-type(4) {
        display: none;
    }
    tbody tr:nth-of-type(5) {
        display: none;
    }
    
    // hides the first cell of the 6. row
    tbody tr:nth-of-type(6) td:first-of-type {
        display: none;
    }

    Greetings,
    Johann

    • This reply was modified 8 years, 2 months ago by Johann Heyne.
    Thread Starter jdsdarkroast

    (@jdsdarkroast)

    That is perfect, thank you!

    I tried looking through my css, not sure why I couldn’t find that. Sorry for asking for such a simple fix. The plugin has been exactly what I needed.

    Thanks again.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Table Not Displaying Correctly’ is closed to new replies.