0
Answered

Hiding Section Titles

Daniel Buford 9 years ago in BLOX CMS updated by Christine Masters 9 years ago 1
Is there a way to hide a section title?

Answer

Answer
Answered
On Zen templates (which most people have), you can hide them with CSS. You take the div ID:

#index-section-title

and in combination with the section class in the html-container dev:

.news

You could do something like this in your site.css:

.news #index-section-title {
display: none;
}

On Flex templates, our new responsive design themes, it is just a block you can delete.

Answer
Answered
On Zen templates (which most people have), you can hide them with CSS. You take the div ID:

#index-section-title

and in combination with the section class in the html-container dev:

.news

You could do something like this in your site.css:

.news #index-section-title {
display: none;
}

On Flex templates, our new responsive design themes, it is just a block you can delete.