menu - HMENU in TYPO3 Typoscript -


i have project has multiple websites. please check screen shot. enter image description here

now, want build menu in "red", contain "blue", "post" , "blog page" websites. , each tab, blue, post , blog post should display pages in websites.

example:

red menu -blue  --jquerytestpage  --home  --fluid  --contact  --form -post  --homepage  --contact -blog page  --startsite  --sitemap 

i'm new typo3 , i'm unable understand how create menus these pages. using typo3 6.0.4

thanks in advance

update

so far have following typoscript code menu

lib.mainmenu = hmenu lib.mainmenu.entrylevel=0 lib.mainmenu.special=list lib.mainmenu.special.value=19,5,2 lib.mainmenu.1 = tmenu lib.mainmenu.1 {   wrap = <ul id="mainmenu">|</ul>   expall = 0   no.allwrap = <li class="mainmenuiitem">|</li>   ro < .no   ro = 1   cur < .no   cur = 1   cur.allwrap = <li class="mainmenuitemactive">|</li>   act < .cur } 

the above code gives me

red menu     -blue     -post     -blog page 

but want

red menu     -blue      --jquerytestpage      --home      --fluid      --contact      --form     -post      --homepage      --contact     -blog page      --startsite      --sitemap 

lib.mainmenu.1 means first level. add additional levels:

lib.mainmenu.2 < lib.mainmenu.1 lib.mainmenu.3 < lib.mainmenu.1 

but afaik need use "directory" instead of "list". "list" renders pages , not subpages.

and remove entrylevel=0 - if use special, should not use entrylevel.

lib.mainmenu = hmenu lib.mainmenu {   special=directory   special.value=19,5,2   1 = tmenu   1 {     wrap = <ul id="mainmenu">|</ul>     expall = 0     no.allwrap = <li class="mainmenuiitem">|</li>     # afaik not need ro     ro < .no     ro = 1     cur < .no     cur = 1     cur.allwrap = <li class="mainmenuitemactive">|</li>     act < .cur   }   2 < .1   2 {     wrap = <ul>|</ul>     no.allwrap = ...     cur.allwrap = ...   }   3 < .2 } 

Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -