[SalesForce] How to create a Tab that shows sub-menu on Click in salesforce

I have a tab in my salesforce instance named as RelationShip Modules.
I want to add custom functionality on this tab, when I click on tab, it should display sub-menu with Modules Names Leads, Accounts, Contacts etc.

When I click on one value i.e. module name like Leads, it should open its list view. then all other functionality should be same.
I want to get something like this:

enter image description here

Here when I click on Tab Client Relationships, It should show me menu same as shown in figure above.

Is it possible in salesforce by using Visualforce or any thing else?

Any help will be appreciated.

Best Answer

The tabs can be over-written with a complete new Visualforce page and you can do all sorts of customization in that page BUT I don't see a way of doing the Dropdown sub-menu on the Tab link itself. Because, unfortunately you cannot access the Tab hover properties even if the Tab is over-written by a visaulforce page.

Alternative Solution: You could probably create a new menu dropdown after landing on the Visualforce page only

Related Topic