#menu {
position: fixed;
width: 500px;
background: rgb(255, 255, 255); /* The Fallback */
background: rgba(255, 255, 255, 0.8);
margin-top: 30px;
}
I've searched high and low for a solution to my problem, but nothing seems to work.
My div needs to stay fixed on the screen, centered in the middle, 500px
wide, with 30px
margin from the top. It should remain in the center no matter the browser size or scrolling.
Is this feasible?