I’m wracking my brain over this and can’t figure it out. I have overlapping DIVs but I cannot get the submit button (login) to be on top.
You’ll see on the right there is the login button and a DIV from the main area thats preventing the button from being clickable.
Any advice would be most appreciated!
Your login button’s position is static so its z-index wont be considered, change it to
position: relative;z-index only works on positioned elements (position:absolute, position:relative, or position:fixed).