[TYPO3] TemplaVoila submenu mapping problem

Dmitry Dulepov typo3 at fm-world.ru
Tue Jan 17 16:45:32 CET 2006


Hi!

Christoph Neuroth wrote:
> On Tuesday 17 January 2006 13:49, Nikolas Hagelstein wrote:
> Well, In the mapping screen, I select the "Map" button for the "Sub-menu (if 
> any)" row. Then I choose the <ul id="subMenu">. I tried OUTER and INNER 
> mapping, both will show a yellow exclamation mark and the tooltip says "no 
> content found".

Do you have correct HTML in your template file? Try to validate it using
http://validator.w3.org/. All tags should be closed properly (not just
close but properly!). The following is wrong, for example:

<ul>
<li>Hello
</ul>

should be:

<ul>
<li>Hello</li>
</ul>

The following is also wrong:
<p/>
should be:
<p></p>

Dmitry.



More information about the TYPO3-english mailing list