I have my drupal all set and I set up ubercart. I hate ubercarts support forum it's really really bad you guys here are awesome and I thank you all for that.
anyway I wanted to know how I can remove certain titles from being displayed. for example on this page >> http://cervus.blacksummerstudio.com/catalog the title says "collection" I want that title to be removed also the links which read "men" and "women". Ubercart makes you add a title and these cannot be blank I tried using CSS to remove them and it works but it removes all the header I just want this pages title to be removed.
also >> http://cervus.blacksummerstudio.com/catalog/1 you can see the title "men" is being displayed above my image which also reads "men" I need to remove that too.
Anyway have any help to offer me PLEASE ;)
Comments
You can still do this with
You can still do this with css by using dom selectors as well as class or entity selectors. For example, you could add these declarations:
table.category td.category strong a,
div#main h1.title{
display:none;
}
basically, you want to make your selectors specific enough to pinpoint the entities you want to disappear, without also including entities that you want to keep. But it's usually feasible. I don't know how much background you have, but I used the Firefox plugin "Firebug" to look at the html of your page. It's great for looking at the actual html that a Drupal theme puts out so that you can build a very specific css selector declaration.
Of course, all of this is really not an elegant way of handling the problem. Ideally you would change the theme so that it doesn't output these titles in the first place. But in this case the lack of elegance may be fine if the css solution works.