Dec 28
Typo3 automatically creates the <title> tag containing the sitename: page title.
But, I wanted to include the subtitle in the tag so that I can have a longer <title> that is descriptive and keyword rich. So, the page <title> tag should go something like this:
<title> Site name: Page title - Page Subtitle </title>
Read the rest of this entry »
Aug 06
Step 1: Your default language
Define which language will be the default language. All pages will primarily be created in this language. The page titles in the page tree will also be shown in this language in the backend.
In the testsite example, english is the default language.
Step 2: Your alternative languages
You define alternative languages for your site by creating each language as a “Website Language” in the root of the page tree. These languages will be globally available in the system!
In the testsite example, Danish and German is created as default languages. They are technically identified by their “uid” numbers.
Read the rest of this entry »
Aug 04
This snippet creates a menu where every menuitem on the 1.level has a own id. Using this id you can format the submenu with css selectors.
In this example a nested unordered list is created where to every mainmenupoint the css id menuitemUID is addet. UID is here the unique ID of the page.
Read the rest of this entry »
Jul 25
this the code for template setup in typo3 for dropdown menu..
not include the css style and the javascript.
lib.menu_1 = HMENU
lib.menu_1.special = directory
lib.menu_1.special.value = 4
lib.menu_1.1 = TMENU
lib.menu_1.1 {
expAll = 1
noBlur=1
#wrap = <ul id=”nav”>|</ul>
NO.ATagTitle.field = title
NO.wrapItemAndSub = <li>|</li>
CUR = 1
CUR.wrapItemAndSub = <li id=”active”>|</li>
CUR.ATagTitle.field = title
}
Read the rest of this entry »
Recent Comments