Viewing 1 replies (of 1 total)
  • Plugin Author jekkilekki

    (@jekkilekki)

    It’s a problem with your margins in your woocommerce style.css sheet on line 845 (woocommerce.joefylan.co.uk/style.css?ver=4.2.5:845). You can tell there’s a problem with the margin as well if you notice how the darker gray from the headings “Basic” and “Business” flow down the left side also.

    If you right click one of the tables and go down in the menu to “Inspect Element” (in Google Chrome), you can see this code:

    .entry-content li, .comment-content li, .mu_register li {
        margin: 0 0 0 36px;
        margin: 0 0 0 2.571428571rem;
    }

    If you turn those margin settings off or rewrite them to margin: 0; it fixes the problem. However, rewriting these to 0 might break some code in other parts of your site so to fix it properly, I’ve updated the plugin to set .pricing-table li { margin: 0; }.

    Hopefully it should be fixed as soon as you update the plugin!~

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