Hi,
Can someone please advise me how i can remove the "Category Name" from my pages as i really don't want this to show could not see how to hide it in the config
I have created a vmsite-ltr.css to hide my Sort order so idealy if i can hide it in that .css as well ?
VM : 3.0.18
Joomla: 3.6.4.
temp link :- - http://moon-dream.co.uk/index.php/2015-10-04-22-28-40
Many thanks for your time
Again, you can use css or a template override. Use Firebug to work out what to do. http://forum.virtuemart.net/index.php?topic=116620.0
Many thanks, I have installed firebug and looked at the code but need a little help as confused as to what to hide ?
Sorry very new to this and trying to understand
<div class="browse-view">
<div class="orderby-displaynumber row-fluid">
<div class="span8 floatleft">
<div class="orderlistcontainer">
</div>
<div class="span4 floatright display-number">
<div class="vm-pagination">
<div class="clear"></div>
</div>
<h1>Bracelets</h1>
<div class="row-fluid">
<div class="product floatleft span4 vertical-separator">
<div class="product floatleft span4 vertical-separator">
<div class="product floatleft span4 ">
<div class="clear"></div>
</div>
<div class="vm-pagination">
</div>
All I have in my .css is
.orderby-displaynumber { display:none; }
which i am using to remove the search.
hard to say as your html is incomplete but could be
.browse-view > h1 {display:none;}
But remember that google search check if elements are hidden , so your H1 is not used anymore for SEO.
Thanks all,
Still not managed to hide it so could do with some help , i have taken it out of offline for a bit so someone can advise me on what i need to do to hide this :-
http://moon-dream.co.uk/index.php/2015-10-04-22-28-39
I am trying to hide the "Category Name" as it really does not look nice there
Any help would be truly appreciated !
thanks
:o
QuoteStill not managed to hide it so could do with some help , i have taken it out of offline for a bit so someone can advise me on what i need to do to hide this
so.. um... we now try to imagine what it may look like and then advise you?
::)
In any template CSS file, or in your template custom CSS :
.browse-view h1 {
display: none;
}