Site logo

Archived topic

Padding is not similar for all products

6 replies · Started by Ritesh on June 3, 2021

Viewing posts 1–7 of 7

Hi there,

Looks like you've added this CSS:

#wc-column-container .product:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

It's excluding the last product as you are using :not(:last-child).

I'm referring to your previous reply.
Let me know how can i deploy a similar style?

As mentioned previously, your CSS is using :not(:last-child):

#wc-column-container .product:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    border-radius: 10px 10px 10px 10px;
}

Which means that the style will apply to all products except the last one on the page.

This isn't a theme thing so you can learn more here: https://www.w3schools.com/cssref/sel_not.asp

If you simply remove :not(:last-child) then the CSS should work for all products.

Thanks a ton Leo !
It is resloved

Ritesh

No problem :)

This archived topic is closed to new replies.