Display description on certain pages

HI,

So I will try to explain this. What I have done was entered css to not display product descriptions, short descriptions and SKU and tags site wide in the customs CSS. Here is the screen shot of what I did to get that done.

But I want product description on a few products. Like this one https://eurekawellness.com.au/shop/organic-turmeric-and-black-pepper/

What CSS would I enter in the cornerstone element to display on just that page. Basically undoing the global CSS for the one page?

Does that make sense?

Thanks

Hi There,

You can use the page id as the CSS selector.
For example the given page id is postid-55646 so this id is in the body class of the page.

and add this type of css.

.postid-55646 .p-meta {
display: block !important;
}

You can repeat this of other elements too.

Hope this helps!

Thanks a lot. That worked and saved me tons of time.