I have this CSS here but its not working 🙁
Here is the CSS
.wpsc-product .hentry{
border-bottom: none;
padding: 0 !important;
position: relative;
}
this is what I am trying to call
<article id="post-60" class="post-60 wpsc-product type-wpsc-product status-publish hentry">
how would I apply to this article and it has to invlice wpsc-product because thats what I am targeting.
.wpsc-product .hentryis a combinator selector which will match any element with a class of hentry that has an ancestor with a class of wpsc-product, likeYou want
.wpsc-product.hentry(no space)