Search…

X3 Photo Gallery Support Forums

Search…
 
mo|series
Experienced
Topic Author
Posts: 25
Joined: 04 Dec 2008, 14:40

Removing textpage titles

09 Dec 2008, 17:04

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
 
mo|series
Experienced
Topic Author
Posts: 25
Joined: 04 Dec 2008, 14:40

PS:

09 Dec 2008, 17:07

PS: How do I change the text layout anyway?

Check out my example
http://de6eversnelling.eu/#/content/textpage/
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

09 Dec 2008, 23:55

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).
 
mo|series
Experienced
Topic Author
Posts: 25
Joined: 04 Dec 2008, 14:40

Thanks

10 Dec 2008, 09:15

Man, you're the greatest! Or id it Pain? hahaha

Thank you