I am trying to center an absolute positioned logo and other elements to follow inside a 100% width header.
What is the procedure for centering an absolute positioned item and ensuring it and the other elements I will add stay centered as they move from 320px to 475px.
Here is the code below I have so far, it is centered at 320px but doesn't remain centered as I expand the page:
@media (max-width: 475px) and (min-width: 320px)
#header {
height: 170px;
width: 100%!important;
position:relative;
}
#logo
left: 21%;
top: -7px;
position: absolute;
}