How Do I Remove The Title in Drupal?
Tue, 12/08/2009 - 6:58pm
Question: How do I remove the Title in Drupal? Wordpress has the option in the admin settings to remove the title so that only the banner image shows. Is this also true in Drupal, or do I need to insert a conditional statement in my page or node template?
Tue, 12/08/2009 - 11:27pm
#2
CSS would be by far the best
CSS would be by far the best way to accomplish this task. This is also a good thing for SEO - Drupal will still show the text to search engines, but using CSS, you can reposition the text using text-indent: -9999px or something to that effect, then insert the banner image using the css background property.

There are lots of ways to do it, depending on what you are trying to accomplish. Just removing the title from one page, or the whole site? Either way, the simplest way to do it is to hide it via CSS. If you have Firefox, use FireBug, or if you have Safari, use the Web Inspector, and find out the path to the element and then hide it.
If it's something more complicated, let me know.