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

    (@mwsgd)

    Hi Ferrett,

    This opacity issue is caused by your theme. Probably something with javascript, though I could be mistaken.

    You can override this with a tweak to your theme’s ‘style.css’ file on line 3083.

    Change

    opacity: 0;

    to

    opacity: 100 !important;

    Lines 3079 to 3084 should now be:

    .products li .product-image-wrap img {
    	width:100% !important;
    	height:auto !important;
    	background:#fafafa;
    	opacity: 100 !important;
    }

    I would recommend implementing this and any other theme modifications by creating a child theme and applying the changes there. Child themes allow you to create modifications that won’t be overwritten by updates. Refer to the WordPress Codex Documentation on Child Themes: https://codex.wordpress.org/Child_Themes

    After creating the child theme, simply add lines 3079 to 3084 to the new child themes ‘style.css’ file under the stylesheet header.

Viewing 1 replies (of 1 total)
  • The topic ‘Images on storefront opacity’ is closed to new replies.