Cool startpage!
First of all, TITLES will always be in the main menu. You can choose if you want to display the titles in your actual textpage layout. To remove them from your textpage, edit your CSS like this:
.textpage_title{
display: none;
}
Instead, you can create your own titles for your textpages. Remember, you have full control of the text and layout for your textpage. For example, you could create a custom CSS class in the stylesheet:
.mytextpage_title{
font-size: 30px;
leading: 8px;
color: #66CCFF;
font-style: normal;
}
... and then you could use it in your textpage like this:
<span class="mytextpage_title">My custom heading</span>
Voila! You have your own custom heading ... You can do any formatting layout in your textpage(within the capabilities of flash textfields).