News:

Looking for documentation? Take a look on our wiki

Main Menu

how to hide label "description"

Started by blondie63, June 10, 2019, 18:52:03 PM

Previous topic - Next topic

blondie63

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 ?


Thanks for help
Blondie - www.catalogo.mobi

Currently using VM3.6.10 on Joomla 3.9.15 PHP 7.3

Jörgen

Add css

.product-description.title {
display: none;
}


Jörgen @ Kreativ Fotografi
Joomla 3.9.18
Virtuemart 3.4.x
Olympiantheme Hera (customized)
This reflects current status when viewing old post.

blondie63

sorry i'm new on VM, where i need to put this css ?

Thanks

Regards
Blondie - www.catalogo.mobi

Currently using VM3.6.10 on Joomla 3.9.15 PHP 7.3

jenkinhill

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
Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

blondie63

I've tried to put it in custom.css and also creating files \templates\mytemplate\css\vmsite-ltr.css
But it does'nt works..
Blondie - www.catalogo.mobi

Currently using VM3.6.10 on Joomla 3.9.15 PHP 7.3

jenkinhill

Use


.product-description .title {
display:none;
}


No space after description.   There was a typo
Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

blondie63

ok, adding a space it works fine
thanks
Blondie - www.catalogo.mobi

Currently using VM3.6.10 on Joomla 3.9.15 PHP 7.3