Forum Replies Created

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

    (@stigmadotc)

    and if anyone lookin for how to hide or remove breadcrumb you can use this additional css

    nav.woocommerce-breadcrumb {
    display: none;
    visibility: hidden;
    }
    /*Remove Breadcrumbs on Mobile*/
    .storefront-breadcrumb {
    margin: 0;
    padding: 0;
    }
    @media (min-width: 768px)
    .storefront-breadcrumb {
    padding: 0;
    margin: 0;
    }

    this will perfectli hide breadcrumb and space betwen header and tittle header

    Thread Starter Cocomocco

    (@stigmadotc)

    thanks, but after 3 days i finnaly solve with additional css.

    .wc-block-grid__products .wc-block-grid__product img, .wc-block-grid__products li.product img, ul.products .wc-block-grid__product img, ul.products li.product img {
    display: block;
    margin: 0 auto 1.618em;
    height: 200px; //i add height here
    width: auto; //and width here
    max-width: 100%;
    }

    without a plugin. thanks for my self.

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