.Net 2.0 Menu + clicking on cell instead of text only

  • Thread starter Thread starter c.nateghi
  • Start date Start date
C

c.nateghi

Hi there,

i'm using a .Net 2.0 webcontrols.Menu and want users to be able to
click on the "cell" to select the menuitem, not just on the text in
the cell. How can I do this, without using a 3-rd party Menu control?

thanks,

Chris.
 
I solved this problem by using the following CSS style on the menu items

..MyMenuItem TD A
{
display: block;
}
 
Back
Top