tags:

views:

31

answers:

1

Now, menus are getting displayed in this way:

Customer
Quote
Table 

But,i want it to display in this way

Customer  Quote  Table

http://dpaste.com/hold/183841/

A: 
#topnav a {
  display: inline;
}

ps: or remove the display: block; you put on #topnav a.

ANeves
@sr pt It is working
DAFFODIL
I'm glad it helped.
ANeves
@ srpt in table,it isn't displaying those both edit and delete.
DAFFODIL
That's something to do with the JS, I guess... but you could accomplish that menu much simpler - I suggest you read this article: http://www.htmldog.com/articles/suckerfish/dropdowns/ , which will teach you how to do something like http://www.htmldog.com/articles/suckerfish/dropdowns/example/ using HTML and CSS (and a minor JS snippet if you wish for it to work on non-conformant browsers [IE6. IE7?]).
ANeves