Tagged: x
-
AuthorPosts
-
February 24, 2017 at 2:12 pm #1384626
the products in question are like this https://www.vapsquad.com/product/female-voice-pack-cryski-english-french-fps-player-voice/
I need to remove the “product description, as I am using visual composer for everything I need, but I can’t disable this text and the spacing is a bit strange.
On that note there is also the issue of how messy the title, pricing, add to cart options are… Like. the price, number box, and add to cart should all be inline, but they are taking up wayyy to much space..
February 24, 2017 at 11:02 pm #1385105Hi there,
Please disable ‘Product description’ tab under Customize -> Woocommerce -> Single product.
Please add following code in Customize -> Custom -> Global CSS :
div[itemprop="description"] h1 { display: none; } .single-product p.price { float: left; } .single-product form.cart { margin: 0; float: left; } button.single_add_to_cart_button.button.alt { color: #000; padding-top: 0; } .single-product .product_meta { overflow: hidden; float: left; }
Hope that helps.
February 25, 2017 at 11:37 am #1385496Hi thanks, the second one (slightly modified) helped a lot.
But the firsat part “product tab” is not what I want to delete.
I just want to get rid of the two words “PRODUCT DESCRIPTION” since it says ‘description’ already at the top, it’s a bit redundant and doesn’t really flow.
February 25, 2017 at 11:53 am #1385511Hi There,
Try adding the following CSS:
.description_pane h2 { display: none }
Hope it helps 🙂
-
AuthorPosts