I'm using last 3.4.2 with default template
On product detail page i've this fields:
Product Name
Images
a label "Description"
description content
How can i hide this label ?
(https://i.postimg.cc/vTkJ6drS/virtue-label.png)
Thanks for help
			
			
			
				Add css
.product-description.title {
display: none;
}
Jörgen @ Kreativ Fotografi
			
			
			
				sorry i'm new on VM, where i need to put this css ?
Thanks
Regards
			
			
			
				Add it to the end of your template's cutom.css file (if it has one) or to the end on your template's general.css - again if it has one. Alternatively, you can create a css override file. The current doc for this refers to VM2 but the principles are the same.  http://docs.virtuemart.net/tutorials/templating-layouts/106-override-vmsite-ltr-css.html
			
			
			
				I've tried to put it in custom.css and also creating files \templates\mytemplate\css\vmsite-ltr.css
But it does'nt works..
			
			
			
				Use 
.product-description .title {
display:none;
}
No space after description.   There was a typo
			
			
			
				ok, adding a space it works fine
thanks