• Resolved spanakaras

    (@spanakaras)


    After the update to 4.70 the tables inside the product description, are not displayed correctly
    Specifically the contents of the first column are wrapped to a min size

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Senff – a11n

    (@senff)

    Hey @spanakaras

    Can you share a link to your site (and a page where this shows), so we can take a look and see what might be wrong?

    Thread Starter spanakaras

    (@spanakaras)

    https://liakakos.gr/product/elvicon-hc-lc/

    if you observe the first column on the description tab it is wrapped

    thanx

    Plugin Support Senff – a11n

    (@senff)

    Hey @spanakaras

    It looks like this may have been added in your editor code (perhaps you copied/pasted it from somewhere?), but you can fix this with some CSS code.

    Go into your site’s admin Dashboard and select Appearance → Customize → Additional CSS. In the CSS textbox on the left, add the following code:

    #tab-description td:first-child {
      text-indent: 0 !important;
      width: 200px;
    }

    You should see the changes right away, but this is just a preview for you, so you can experiment a little if you like.
    Once you’re happy with it, select “Save Changes” from the top, and your changes will be applied to your site.

    Plugin Support Stuart Duff – a11n

    (@stuartduff)

    Automattic Happiness Engineer

    Hi @spanakaras,

    Looking at your site it seems the issue is due to the CSS style.css file within a plugin you have installed called WordPress Stats Manager Pro. See this screenshot below.

    Image Link: https://d.pr/i/KdrAkj

    Adding some CSS to your site like this below would override that.

    
    .single-product .entry-content table tr td {
        width: auto;
    }
    
    Thread Starter spanakaras

    (@spanakaras)

    thanx this solved the problem !
    it was the plugin

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘4.7.0 version does not load tables correctly’ is closed to new replies.