Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
There are a couple of ways to do it but I think the best is using CSS
You can hide it by stating «display:none» to the class «title» in all blocks, in all blocks of a target side bar or in specifics blocks using their ID. I think the latter would be best for your needs.
For example, here is what i have done to hide titles of all blocks on my site. I could display a single title by adressing a new command on a specific block using its ID
Comments
This worked for me
http://drupal.org/node/11295
Seems to work with some themes. Does not work with others though....
my suggestion
There are a couple of ways to do it but I think the best is using CSS
You can hide it by stating «display:none» to the class «title» in all blocks, in all blocks of a target side bar or in specifics blocks using their ID. I think the latter would be best for your needs.
For example, here is what i have done to hide titles of all blocks on my site. I could display a single title by adressing a new command on a specific block using its ID
.block .title {
/* border-bottom: 1px solid #bbb;
padding-bottom: .25em;
margin-bottom: .25em;
color: #000;
font-size: 1.1em;*/
display: none;
/* HIDES ALL BLOCK TITLES */
}
hope it answers
jp
drupal 5.0
at the drupal 5.0 just type "none" without the quotes ;)
<none>
In Drupal 5, use <none>
--
The Manual | Troubleshooting FAQ | Tips for posting | How to report a security issue.