Forked from GumroadHelp/Product-customization-snippets.css
Created
October 22, 2017 21:12
-
-
Save douglasjarquin/b82aebb2b19312e5bb1514a1d284ce5f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- ADJUST THE PURCHASE FORM'S BACKGROUND COLOR. --> | |
.buy-form-main { background-color: red !important; } | |
<!-- ADJUST THE FONT OF YOUR PRODUCT DESCRIPTION. --> | |
.product-main blockquote.product-description { font-family: garamond !important; } | |
<!-- CHANGE THE PRICE TAG COLOR AND FONT COLOR. --> | |
h2.product-price-tag { background: red !important; color: red; font-color: red; } | |
h2.product-price-tag:before { border-right-color: red !important; color: red; } | |
<!-- HIDE THE SOCIAL BUTTONS - TWITTER, FACEBOOK, EMAIL --> | |
#product_page .sharing, #user_page .sharing { display: none !important; } | |
<!-- CHANGE THE WIDTH OF A PRODUCT'S PAYMENT FORM --> | |
#product_page #wrapper, #product_page #wrapper .product-row { max-width: 1000px !important; } | |
<!-- HIDE THE "# LEFT" BANNER ON PRODUCTS WITH A LIMITED AMOUNT OF STOCK --> | |
.products-left-container { display: none !Important; } | |
<!-- REMOVE THE ORIGINAL, OR PRE-DISCOUNT PRICE FROM A DISCOUNTED PRODUCT. This allows you to offer discounts, but not let customers see the original price of a product. --> | |
.old-price { display: none !important; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment