Only display sale price while hiding regular price at the top of product pages

Note:
Groupthought does not provide any warranty or further support for this code. Use this code at your own risk. The code provided below is only a suggestion. You are responsible for any and all code customizations made to your theme. Please work with a developer or Shopify Expert to ensure proper customization. This code may not work with all versions of of Pipeline or with other code customizations and apps you may have installed. We strongly recommend that you make duplicate of your theme before adding or changing any code in your theme.
This tutorial is intended for use with the Pipeline theme.

Example before:

After:

Note: This will affect all products including regular priced items - The top price will not be shown on a product that's at regular price:

Code:

/* -- code to hide top regular price on product pages -- */
#ProductPrice-product span.money { display : none; }
.template-product .product__price { margin-bottom : 30px; }
/* - 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