It was a problem of Typo Script i change it to:

   MAIN_MENU = HMENU
   MAIN_MENU {
   special = directory
   special.value = 30

        1 = TMENU
        1 {
                expAll =1
                wrap = <ul class="sf-menu">|</ul>
                noBlur = 1
                NO = 1
                NO {
                        wrapItemAndSub = <li>|</li>
                        stdWrap.htmlSpecialChars = 1
                        ATagTitle.field = title
                }
                ACT <.NO
                ACT {
                        wrapItemAndSub = <li>|</li>
                }
        }
        2 < .1
        2 {
                wrap = <ul>|</ul>
                ACT.wrapItemAndSub = <li>|</li>
        }
        3 < .2
        3 {
                wrap = <ul>|</ul>
                ACT.wrapItemAndSub = <li>|</li>
        }
}


And here the output sourcecode:

<ul class="sf-menu sf-js-enabled">
<li class="">
<a href="index.php?id=startseite" title="Startseite">
Startseite
</a>
</li>
<li class="">
<a href="index.php?id=news" title="News">
News
</a>
</li>
<li class="">
<a href="index.php?id=wirueberuns" title="Wir über uns">
Wir über uns
</a>
</li>
<li class="">
<a href="index.php?id=leistungen" title="Leistungen">
Leistungen
</a>
<ul style="display: none; visibility: hidden;">
<li>
<a href="index.php?id=buchhaltung" title="Buchhaltung">
Buchhaltung
</a>
</li>
<li>
<a href="index.php?id=lohnbuchhaltung" title="Lohnverrechnung">
Lohnverrechnung
</a>
</li>
<li>
<a href="index.php?id=billanzierung" title="Billanzierung">
Billanzierung
</a>
</li>
</ul>
</li>
<li class="">
<a href="index.php?id=service" title="Service">
Service
</a>
<ul style="display: block; visibility: hidden;">
<li>
<a href="index.php?id=sitemap" title="Sitemap">
Sitemap
</a>
</li>
<li>
<a href="index.php?id=impressum" title="Impressum">
Impressum
</a>
</li>
</ul>
</li>
<li class="">
<a href="index.php?id=kontakt" title="Kontakt">
Kontakt
</a>
</li>
</ul>

and now works fine for me! ;)

thanks for the support! ;)

Here a Demo: http://typo3.lexmarketing.eu/

best regards
terabyte

On 6 Sep., 08:50, Lexmarketing <gmt...@gmail.com> wrote:
> so no i have a drop down but still some other problems:
>
> Here my typo3 TS-Code for the menu:
>
> #Navigation Main
>    MAIN_MENU = HMENU
>    MAIN_MENU {
>    special = directory
>    special.value = 30
>    expAll=1
>
>    1 = TMENU
>    1.wrap= <ul class="sf-menu">|</ul>
>    1.noBlur = 1
>
>    1.NO = 1
>    1.NO.ATagTitle.field = title
>    1.NO.linkWrap = <li>|</li>
>
>    1.ACT = 1
>    1.ACT < .NO
>    1.ACT.doNotLinkIt = 0
>    1.ACT.allWrap = <li>|</li>
>
>       2 = TMENU
>       2.noBlur = 1
>       2.wrap = <li><a class="sf-with-ul"><ul>|</ul></a></li>
>       2.noBlur = 1
>
>       2.NO = 1
>       2.NO.ATagTitle.field = title
>       2.NO.linkWrap = <li>|</li>
>
>       2.ACT = 1
>       2.ACT < .NO     # Mit"2.ACT < .2.NO" springt das menu rein
>       2.ACT.doNotLinkIt = 0
>       2.ACT.allWrap = <li>|</li>
>
> }
>
> Here the output sourcecode:
>
> <ul class="sf-menu sf-js-enabled">
> <li class="">
> <a href="index.php?id=startseite" title="Startseite">
> Startseite
> </a>
> </li>
> <li class="">
> <a href="index.php?id=news" title="News">
> News
> </a>
> </li>
> <li class="">
> <a href="index.php?id=wirueberuns" title="Wir über uns">
> Wir über uns
> </a>
> </li>
> <li class="">
> <a href="index.php?id=leistungen">
> Leistungen
> </a>
> </li>
> <li class="">
> <a class="sf-with-ul">
> </a>
> <ul style="display: none; visibility: visible;">
> <li class="">
> <a href="index.php?id=buchhaltung" title="Buchhaltung">
> Buchhaltung
> </a>
> </li>
> <li class="">
> <a href="index.php?id=lohnbuchhaltung" title="Lohnverrechnung">
> Lohnverrechnung
> </a>
> </li>
> <li class="">
> <a href="index.php?id=billanzierung" title="Billanzierung">
> Billanzierung
> </a>
> </li>
> </ul>
> </li>
> <li class="">
> <a href="index.php?id=service" title="Service">
> Service
> </a>
> </li>
> <li class="">
> <a href="index.php?id=kontakt" title="Kontakt">
> Kontakt
> </a>
> </li>
> </ul>
>
> and here a link to the demo site:http://typo3.lexmarketing.eu/
>
> On 6 Sep., 02:33, Charlie <charlie...@gmail.com> wrote:
>
> > that isn't same code as in link....there are no sub UL's in link. To fix 
> > code you posted in message need put an <a> tag in the li that has sub UL.
> > <li><a>
> >        <ul>///sub menu here.
> >        </ul>
> > </li>
> > Lexmarketing wrote:here is the source code of my menu when you click the 
> > button "Leistungen" underhttp://typo3.lexmarketing.eu/<ul 
> > class="sf-menu"><li><a href="index.php?id=startseite" title="Startseite" 
> > >Startseite</a></li><li><a href="index.php? id=news" title="News" 
> > >News</a></li><li><a href="index.php? id=wirueberuns" title="Wir über uns" 
> > >Wir über uns</a></li><li><a href="index.php?id=leistungen" 
> > >Leistungen</a></li><li><ul><li><a href="index.php?id=buchhaltung" 
> > title="Buchhaltung" >Buchhaltung</a></ li><li><a 
> > href="index.php?id=lohnbuchhaltung" 
> > title="Lohnverrechnung"Lohnverrechnung</a></li><li><a 
> > href="index.php?id=billanzierung"title="Billanzierung" 
> > >Billanzierung</a></li></ul></li><li><a href="index.php?id=service" 
> > title="Service" >Service</a></li><li><a href="index.php?id=kontakt" 
> > title="Kontakt" >Kontakt</a></li></ul> On 5 Sep., 17:45, 
> > Lexmarketing<gmt...@gmail.com>wrote:Click on the button "Leistungen" and 
> > hava a look on the sourcecode!! On 4 Sep., 14:35, 
> > TheoSoft<cjcommunicati...@gmail.com>wrote:You don't have any submenus.On 
> > Sep 4, 3:48 am,Lexmarketing<gmt...@gmail.com>wrote:Hello,iam a new here. I 
> > will creat a jQuery menu on my typo3 site but still some problems.I have 
> > add the jQuery in the head of the site and all needed scripts! Then i give 
> > the ul a class name <ul class="sf-menu"><li></li></ul> ...Here a link to 
> > the side:http://typo3.lexmarketing.eu/Bestregards Swoboda Thomas- Zitierten 
> > Text ausblenden -- Zitierten Text anzeigen -

Reply via email to