News:

Support the VirtueMart project and become a member

Main Menu

How to remove bullets near the thumbnails

Started by dimitrijevuk, June 10, 2015, 10:19:38 AM

Previous topic - Next topic

dimitrijevuk

Please,

is it posible to remove black bullets that covers product name by the thumbnail in category view?
I am using VM 2.6.18 and Joomla! 2.5.18
This is webpage: http://locolobo.hr/torbe

Thanks

jenkinhill

css override.
.component-content h2::before {display:none;}

J2.5.18 is insecure, if staying with J2.5 you should update to 2.5.28  (unless you typed it wrong).
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

dimitrijevuk

Sorry I didnĀ“t understood what to do and where to do?

jenkinhill

The issue is in your Joomla template css, not VirtueMart so add the style definition to the end of the last template css file to load, or preferably add it to VM css and use a css override.

In the docs:  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

dimitrijevuk

I did it, but nothing changed.
I put the .component-content h2::before {display:none;} at the end of vmsite-ltr.css file, and uploaded that file into template css folder.
Something I am doing wrong?

jenkinhill

No it is a problem with the RocketTheme template - they do too many things their own way. The template css files are loading after the VM css.

You can either change that code to .component-content h2::before {display:none !important;}

Or append it to the end of the css file at /modules/mod_roknavmenu/themes/fusion/css/fusion.css

Or make a custom.css file and set it to load last in the head of the page - ie load it immediately before </head>

If you get used to using Firebug and reading code these things are easy to work out.
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