25
Hi,
Quote:
I would like to remove the title
you can't do this with CSS.
You need to edit your theme - find:
<div class="blockTitle"><{$block.title}>div>
or simething similar and replace it with somethig like:
<{if $block.title !=""}>
<div class="blockTitle"><{$block.title}>div>
<{/if}>
then use empty tytle for the block ind it will hide it.
You may use some conditional statement and some format to hide titles like if the title is [The block title I want to hide] to hide. In that case it will be easyer to identify blocks in block management.