Posted on September 8, 2008Maarten
This is probably the most simple way to add a dynamic menu to your TYPO3 website. Just put the code into the Typoscript setup and parse temp.menu through the autoparser.
temp.menu = HMENU
temp.menu.1 = TMENU
temp.menu.1 {
NO.ATagBeforeWrap = 1
}
Now you have a menu with nothing more than just an anchor tag.
Posted on September 6, 2008Maarten
A lot of web developers place their (company)name in top of the source code. Just to let people know who made the website or add contact information. You can do this to with TYPO3. Just use the following Typoscript Setup:
### Headercomment ###
config.headerComment (
This website was made by me!
)
Posted on August 17, 2008Maarten
Ever wondered how to make a dynamic nice graphical header? TYPO3 can make these by using the GIFBUILDER on the webserver. To make the magic happen you’ll need to overwrite the default headers by using this Typoscript Setup. You’ll probably need to adjust some of the code to get a nice output depending on the font your using. Beware that a graphical header uses much more time to display than a usual text header. Read more…
Posted on August 15, 2008Maarten
Here is my default TSConfig configuration for the htmlAREA RTE. I use this one in combination with a typical (default) configuration in the Extension Manager with images enabled.
Read more…
Posted on August 8, 2008Maarten
Normally, when you want to adjust to volume in OS X Leopard you just hit the volume keys on your keyboard. Rarely people use the volume bar in the upper right corner or in the system preferences. But their are times when you just can’t get the volume right. Read more…
Posted on August 7, 2008Maarten
Normally, when you hit the full screen button in the htmlAREA RTE, the text-area doesn’t go full screen at all. Instead most of the time (depending on your browser and TYPO3 version) you’ll get this half full screen text area which is really not helpful at all. To fix this, past to following line into your TSConfig field in the parent page or folder.
TCEFORM.tt_content.bodytext.RTEfullScreenWidth = 100%