How to remove woocommerce border

Hi,

How to remove #dadada colored border from woocommerce page?

Thank you,
Marko

hey there

Hope you are having a good day and thank you for your question :slight_smile:
Please add this CSSĀ in appearance - customize - additional CSS

.woocommerce .main-content-inner {
    border: 0px solid #dadada;
}

Thanks!
Colorlib Support Team

Hi Noda,

That worked well, thank you.

One more question about woocommerce.
How to remove underline from woocommerce sidebar widgets, recently viewed products is in the added picture.

With gratitude and love,
Marko

Howdyy :slight_smile:

Use this css in this case:

#secondary .product_list_widget .widget * {
border-color: transparent;
}

Hi,

Did not work, sorry. Also with !important it is the same and chache is not the case :slight_smile:

Best regards,
Marko

Howdyy :slight_smile:

Strange, but lets try this code instead:

ul.product_list_widget li {
border: none;
}

That did it,thank you Noda!

Hi, there

Now I will now close the topic and mark it as resolved. Feel free to contact us again Thanks!