VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: finngu on January 09, 2020, 18:19:46 PM

Title: Remove category name from "browse pages" - css not working
Post by: finngu on January 09, 2020, 18:19:46 PM
I need to remove the category title from all browsepages .....
I tried using this CSS:
.browse-view h1 {
    display: none;
}

BUT it only works on platforms and browsers that supports it. So on ipads/safari the category titles are still there...!!
Above css seems to works on my pc on ipads :(

So i think I need to have it removed NOT by CSS but in the specific file that puts the category titles on the browse pages

I looked inside "products-php" after doing some googleing, but no changes that I make there works...

So specifically which php file is actually putting in the category title on all the browse pages??
Can anyone tell me that, and what I have to remove?

In the old days I believe I could make a setting in Joomla's menu item settings, but this seems to be gone with latest versions of VM and Joomla?

I am using Helix Ultimate as template



Thanks
Finn
Title: Re: Remove category name from "browse pages" - css not working
Post by: GJC Web Design on January 09, 2020, 23:38:14 PM
QuoteBUT it only works on platforms and browsers that supports it. So on ipads/safari the category titles are still there...!!

if basic css like 
.browse-view h1 {
    display: none;
}
was platform dependent the internet would collapse!!!   :P

Clear your caches!!!!
Title: Re: Remove category name from "browse pages" - css not working
Post by: finngu on January 09, 2020, 23:50:18 PM
OK I will try that - again

Thanks
Finn
Title: Re: Remove category name from "browse pages" - css not working
Post by: finngu on January 09, 2020, 23:57:36 PM
I think that worked actually :)

Thanks