Page 1 of 1

Removing textpage titles

Posted: 09 Dec 2008, 17:04
by mo|series
Dear experts,

In order to design the gallery the way I want to, I need to get rid off the textpage titles. Is it also possible to have a menu item named differently from the textpage title (to an extended title for example). Otherwise my main menu titles will fuck up (look not so cool to me) my menu if named too long.

Greetings from Amsterdam

PS:

Posted: 09 Dec 2008, 17:07
by mo|series
PS: How do I change the text layout anyway?

Check out my example
http://de6eversnelling.eu/#/content/textpage/

Posted: 09 Dec 2008, 23:55
by mjau-mjau
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:
Code
.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:
Code
.mytextpage_title{
	font-size: 30px;
	leading: 8px;
	color: #66CCFF;
	font-style: normal;
}
... and then you could use it in your textpage like this:
Code
<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).

Thanks

Posted: 10 Dec 2008, 09:15
by mo|series
Man, you're the greatest! Or id it Pain? hahaha

Thank you