okay, so i am trying to make my wrapper go all the top of the page. like where the browser starts. i also am having problems getting the wrapper to be centered in the window in fire fox. this is all i have so far.
1. You need to zero out margins and padding on your body element. I suggest you use Eric Meyer's CSS Reset to more easily control the style of the HTML elements.
2. To center the "wrapper" div use this: margin: 0 auto; this statement says, "no margin above and below the div and automatically center it."