How do I remove the block title from all blocks (also those in the main page)?

I've tried to set .title to 0px in the CSS file, but then each blogpost's title also disappear unfortunately.

Grateful for help,
Bure

Comments

nevets’s picture

Try

.block .title
{
  display: none;
}

The first line is a rule for titles within blocks.
The second line says to not display them.