Order menu bar drop down on ASP.NET web page - html

I have a menu bar on my ASP.NET page and some of the content in the Menu bar has drop downs with more results. When I hover over some of the content in the menu bar which shows a drop down, the drop down is ordered to be behind everything on the page, meaning I cannot see what content is being shown.
Here is an example:
Is there a way I can get the menu bar to appear above the other information?

u could use z-index in menu css file
z-index:999;

Related

Scrollable vertical menu jumps to top after clicking on a link

Good evening community,
I have a problem related to a vertical menu that is scrollable when there are more items in the menu than the page can take vertically. If I scroll down to an item that is not displayed on the screen when I'm at the top of the menu and I click this item to get to the respective page, the page will get loaded but the menu jumps back to the top, so that the item i just clicked is not displayed on the screen again. But I want that the part of the menu with the item is shown when the new page is loaded and not the top of the menu.
I'm developing my site with python and django and using bootstrap for frontend, if that helps with my problem.
I will add some pictures to visualize my problem. Sadly i can't post pictures directly yet.
Starting Position 1 <- This is the top of the menu with the page 'Einführung' loaded
Scrolled Position 2 <- This is the scrolled position and I want to click the 'Print-Funktion'-link
Top Position 3 <- This is the menu after I clicked on the link (top position)
Scrolled Position 4 <- This is the menu when I scroll down after I clicked on the link
I numbered the pictures for easier reference. Currently the menu is in the state of the 3rd picture after I clicked on the link but I want the menu to be in the state of the 4th picture.
Edit1:
I forgot to add how I made the menu scrollable. I used the malihu-custom-scrollbar-plugin. The Plugin
Thank you in advance for your answers!
I've found a solution which is not perfect, because it will always jump to the top for some milliseconds after clicking on a link and then to the desired position.
I've used this when the page is loading
$(selector).mCustomScrollbar("scrollTo",position);

navigation bar in polymer

How can I achieve navigation bar like this in polymer I have a home toolbar and navigation bar, navigation bar has mydashboard,user,demo horizontally aligned and when I click on user I should see mydashboard and demo and I can also toggle back, when I toggle back only the url changes the toolbar and naviagtion bar remains constant can anyone create a fiddle and show?

Polymer app-toolbar with drop down menus

In Polymer 2 I would like to create an app-toolbar with menu buttons that on-click show a dropdown menu, similar to a classical desktop application. The app-toolbox seems to be a great start for a responsive solution and there are examples for creating toolbars with simple navigation buttons/links.
What I don't find are examples on creating dropdown menus in the toolbar.
My questions:
Which component should I use to show a dropdown menu in the app-toolbar? Maybe iron-dropdown? Is there any example?
What would happen to the dropdown menu when on narrow screens the app-toolbar collapses to the single menu button? Would the drawer that is shown by the menu button allow me to show the dropdown menus?
You could use paper-dropdown-menu, or iron-dropdown or some similar.
But you should pay attention for the iron-overlay-behavior dropdown content max-height.

Scroll a long drop down menu horizontally with buttons at both ends?

I have a menu with categories and sub-categories.
I have to show a menu in form of drop down i.e category on top and the sub categories in drop down menu.
I have tried to include slider in the menu, but the problem is I have 19 categories that can't be shown in the menu bar at a time, so I have to scroll the menu horizontally with buttons at both ends.
The problem is if I include scroll the drop down menu disappears.
Do you have any suggestions how to handle this?

CSS Navigation menu item dissappearing

I am currently making a drop down navigation bar for a website. I am having trouble with it because I wanted to stretch the navigation bar accross the whole screen right under the banner. I used width: 100%; to make it do so. But when I hover over the list and the drop down menu appears it stretches across the screen as well. It was because of the position being relevant. I changed it and when I did the drop down menu is white until you hover over one of the li in it.
http://codepen.io/anon/pen/FDrau
Is the link to what i'm working on. Can anyone show me how to fix it?