Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Salva Machi

    (@salvamb)

    Hi @marinow1991

    The size that is actually used there is the default for all the WordPress List Tables (including WooCommerce’s products list).
    You can enlarge the images with CSS though.
    Something like this could do the trick:

    table.atum-list-table td.column-thumb img {   
        width: auto !important;
        height: auto !important;
        max-width: 80px !important;
        max-height: 80px !important;
    }

    You can search on the internet how to add this code to that page (or globally) as this kind of customization is out of the scope of our support service.

    Best Regards,
    Salva.

    Thread Starter marinow1991

    (@marinow1991)

    I put this in my child theme in style.css but there is no change in the pictures.

    I also have a CSS that is for the admin panel only, I tried to enter the code there as well, but nothing happens.

    The other thing is your code is wrong it should be min-height and min-width

    Plugin Author Salva Machi

    (@salvamb)

    I’ve just copied the actual CSS code for thumbnails. You can inspect the CSS code with Chrome developer tools and you’ll see the CSS applied to them…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘enlarge photos in stock central’ is closed to new replies.