Hello jeddi,
Do not use
deprecated <center> tags!
To center an element you need three things:
- a valid DocType
- an element with a width
- that elements right/left margins set to auto
Since your #banner gets it's 900px width from inline styling, adding this bit in red to your CSS will center it.
Code:
#banner {
border: 3px solid black;
display: none;
/*top: 0;
left: 0; */
margin: auto;
overflow: hidden;
position: relative;
}