Profile Page- Made My Own Nav.bar Problems

Hey all,

I was just wondering if someone could tell me how I get my wells not to go on top of my navbar. any other feedback would be much appreciated as well.

z-index could resolve your problem .The z-index property specifies the stack order of an element.so if you set a high z-index value for navbar it would be given more preference.try this:

#anyIdName
{
  z-index:1;
}

give the navbar ul id anyIdName so that this part always remains in the front.

I put it under the ul in CSS, that seemed to work. THANK YOU!

oh happy that i was able to help you:smiley :