Featured product: Hide lower product description on homepage

When using the Featured Product section on the homepage - If you'd like to only show the sidebar product description information and hide the lower product information section, use the following modification:

Example:

Code:

/* -- code to hide lower product description on homepage -- */
.template-index .product-description--below { display : none ; }
/* - end - */

This version will hide both the lower product description and the tabs:

/* -- code to hide lower product description and tabs on homepage -- */
.template-index .tabs-wrapper, .template-index .product-description--below { display : none ; }
/* - end - */

Where do I add the code?

Use this link to learn where exactly to add this code snippet:

Where to add your CSS style code