Dublay
Dublay

Reputation: 65

How to add link title in Typo3

I'm actually absolutely new to Typo3 and need some help. I've got a site (6.1.5) with a main menu - but none of the links has a title:

<li>
<a href="sub/page1.html">page1</a>
</li>
<li>
<a href="sub/page2.html">page2</a>
</li>

In the backend I can use "Page Title", but nothing appears in the frontend.

Thanks in advance!

Dublay

Upvotes: 0

Views: 1271

Answers (1)

ScubaBen
ScubaBen

Reputation: 138

We need to know more to help! Have a look at the template section in the BE Menu. Look if you find there an Object named TMENU. Is so, this would be your solution:

ATagParams = title="{field:abstract // field:subtitle // field:title}"
ATagParams.insertData = 1

Like that first the abstract is taken, if empty the subtitle, if empty the title.

Have a look here: http://www.serious-cool.de/webdesign/typo3/dynamische-linktitel-im-menue/

I you cannot find anything alike, your template is propably rendered with fluid. That means you have somewhere in your system a navigation.html file you need to find and modify.

Since Typo3 is very dynamically developing there are more then one possibility to render a menu....

Upvotes: 1

Related Questions