Okay
  Public Ticket #2922713
Display errors and round corners
Closed

Comments

  •  1
    Dennis started the conversation

    Hello, I have two questions. At the top right of the page I have a display error. There is a text above the search filter. How can I fix this?

    And the second question is how can I set that the product images do not have rounded corners. 

    Thanks in advance

  •  1,878
    Judith replied

    Hi Dennis,

    Thanks for keeping in touch.

    1. Please try this css:

    .woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
        right: 313px;
    }

    2. Please try this css:

    .product .product-wrap, .widget_shopping_cart ul.product_list_widget li img {
        border-radius: 0px;
    }

    Thanks.

  •  1
    Dennis replied

    Hey, thanks for the fast answer. 

    The first one did not work, I still have this Problem. For me it would be a problem if the "Zeigt alle 5 Ergebnisse" isn't there at all. 

    The second CSS works fine. The corners are now good. :)

  •  1,878
    Judith replied

    Hi Dennis,

    Please try this css:

    .woocommerce .full-width-content .woocommerce-result-count {
        display: none;
    }

    Thanks.

  •  2,959
    Andrew replied

    Hello Dennis,

    Use the following CSS.

    p.woocommerce-result-count {
        display: none;
    }
    

    Regards,

  •  1
    Dennis replied

    Thank you Andrew and Judith. Now it's fine <3