zii.widgets.CMenu

I want to see the menu vertically instead of horizontally

Is possible????

<div id="mainmenu">

	&lt;?php &#036;this-&gt;widget('zii.widgets.CMenu',array(


		'items'=&gt;array(


			array('label'=&gt;'GESTIONE STUDENTE:', 'url'=&gt;array('/anagrafe/create')),


			array('label'=&gt;'GESTIONE DOCENTE:', 'url'=&gt;array('/docente/create')),


			array('label'=&gt;'GESTIONE ENTE:', 'url'=&gt;array('/organizzazione/create')),


			array('label'=&gt;'GESTIONE Riferimenti:', 'url'=&gt;array('/riferimenti/create')),


			array('label'=&gt;'GESTIONE OFFERTE TIROCINIO:', 'url'=&gt;array('/off_stage/create'))


		),


	)); ?&gt;


&lt;/div&gt;&#60;&#33;-- mainmenu --&#62;

Yes, use css.

which property should I set? Do I just create a specific CSS for this menu?

It’s up to you to design the way your menu displays. I would suggest searching google for a Horizontal CSS Menu.

Yes it’s possible! Yii just generate the html structure of menu, but the design you choose yourself.

http://www.cssplay.co.uk/menus/

in your case




#mainmenu ul

{


}


#mainmenu ul li

{


}


#mainmenu ul li a

{


}



etc…

I have it already, but those are for the main menu … I want to customize the menu because I need another menu choice in the Index page and I do like:

Tirocini&Stage

Scegliere una delle seguenti opzioni:

GESTIONE STUDENTE: Inserimento Modifica/Cancellazione

GESTIONE DOCENTE: Inserimento Modifica/Cancellazione

GESTIONE ENTE: Inserimento Modifica/Cancellazione

GESTIONE RIFERIMENTI: Inserimento Modifica/Cancellazione

GESTIONE OFFERTE TIROCINIO: Inserimento Modifica/Cancellazione

GESTIONE CONVENZIONI: Inserimento Modifica/Cancellazione

GESTIONE CANDIDATURE: Inserimento Modifica/Cancellazione

GESTIONE PROGETTO TIROCINIO: Inserimento Modifica/Cancellazione