DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

TSconfig

The TypoScript configuration determines the way the links are rendered in the front end.

Property

default

Data type

integer

Description

The number of the default size. The CSS of this size number is output if none of the links of the font resizer have been clicked yet.

Default

3

Property

1,2,3,...

Data type

string

Description

CSS configuration for each size

Default

[fontsizer / fontsizer2 / fontsizer3 / fontsizer4 / fontsizer5]

((generated))

Example

The default configuration:

fontsizer {
        default = 3
        1 (
                body, table {
                        font-size: 0.6em;
                }
        )
        2 (
                body, table {
                        font-size: 0.8em;
                }
        )
        3 (
                body, table {
                        font-size: 1.0em;
                }
        )
        4 (
                body, table {
                        font-size: 1.2em;
                }
        )
        5 (
                body, table {
                        font-size: 1.4em;
                }
        )
}