[TYPO3] Default sitemap problem
Tapio Markula
tapio.markula at xetpoint.fi
Sun Jun 29 08:58:30 CEST 2008
bernd wilke kirjoitti:
> on Sat, 28 Jun 2008 14:40:24 +0000, LinTong wrote:
>
>> Hallo everybody
>>
>> I found that the default sitemap looks a little bit strange. the lower
>> lever has a bigger font-size. e.g.
>>
>> LEVEL1(small)
>> level2 (larger)
>> level2 (larger)
>> level3 (much larger)
>> LEVEL1(small)
>
> That is not default-behavior of CSS-styled-content.
>
>> What should i do if i would like that the different lever has the same
>> font-size? I found the default css for sitemap in the folder
>> htdocs\typo3\css_styled_content\static\setup.txt. I tried to modify it
>> but the style of the sitemap does not change.
>
> that may be a hint that you override the build-in CSS.
>
> try to get a tool for CSS-analyzing and to get the information where the
> CSS-definition for your page gets from.
in genaral this is typical behavior, when use ul/ol + li structure.
If yuo set for example font-size 1.2em that will be *multiplied*
first level 1.2
second level 1.2x1.2
third 1.2x1.2x1.2 etc.
when the result is
>> LEVEL1(small)
>> level2 (larger)
>> level2 (larger)
>> level3 (much larger)
if you set 0.8em the situation is opposite.
you must *reset* second level
ul li li { font-size:1.0em;}
More information about the TYPO3-english
mailing list