• Resolved jysmith

    (@jysmith)


    The images on my shop and product pages have been cropped and now have the title across the front.

    It wasn’t like this originally so I’m not sure what I have done to cause this.

    Here is a link:

    https://lollipopsky.com

    Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Those are the categories, and thats how this theme does category thumbnails. You can change that with css and editing the code. What are you wanting to do?

    Kadence Themes

    Thread Starter jysmith

    (@jysmith)

    Thanks for your quick response.

    I’d like the images to be fully displayed (as they are in the media file) and the Category name to be underneath or on top or just not there at all.

    Thanks.

    If you want to change the images sizes you need to edit the file: virtue/woocommerce/content-product_cat.php and on line 26 change
    $catimgheight = 130;
    to:
    $catimgheight = null;

    and for the title you can add this to your custom css box in the theme options:

    .product-category.grid_item a h5 {
    color: #444;
    position: static;
    background: transparent;
    }
    .product-category.grid_item h5 mark {
    color: #444;
    }
    .product-category.grid_item a:hover h5 {
    color: #444;
    background: transparent;
    }
    .product-category.grid_item a:hover h5 mark {
    color: #444;
    }
    Thread Starter jysmith

    (@jysmith)

    Thank you, thank you, thank you!

    That’s exactly what I wanted to do.

    You guys have amazing customer support!

    Your Welcome!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Menu Icon Image Sizing & Labels’ is closed to new replies.