• I’ve just found this plugin, it seems amazing so far, thank you! One thing I’ve found with my theme is that the new product badge is hidden behind the product image – you can just see the edge of it poking out. How would I bring it forward?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter rosbiffer

    (@rosbiffer)

    For now I’ve just added some custom css:

    .wcz-new-product-badge {
    	z-index:1;
    }
    jimmy889

    (@jimmy889)

    To bring the new product badge forward and ensure it’s visible, you can adjust the z-index property in your CSS. Add the following CSS rule:

    .your-badge-class {
    z-index: 9999; /* or any higher value than the z-index of the product image */
    }

    Replace “.your-badge-class” with the actual class or ID of your new product badge element. Adjust the z-index value as needed to make sure it appears above the product image.

    For more solution help visit WordPress developer Css specialist.

    • This reply was modified 7 months ago by jimmy889.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘New product button hidden’ is closed to new replies.