I know this has probably been asked a million times, but how do I center a div that has absolute positioning.
I have tried this and it does not center it.
You can view the site here password:springy88
#logo{ position:absolute; width:243px; left: 50%; margin-left: 121.5px; }
You need to use
negative margins–margin-left:-121px. That will center the logo. After that you’ll need to properly position your nav…