I'm working on making a new theme for my wordpress blog http://www.ryancanfield.com but i am having trouble coding the design i made in photoshop. i sliced it and almost got it working except for a few things.. i need to know here is my design and how i want it to look: http://i24.tinypic.com/2cr57vn.jpg here is what i have so far. http://ryancanfield.com/new/ here is the css: http://www.ryancanfield.com/new/style.css i need the header.png to be flush with the browser window.. i need the right side of the background to work and i need there to not be a gap inbetween the content and the footer/header. help me out!! you can tell what i need fixing. right?
Above everything in your styles.css. But under: @charset "utf-8"; /* CSS Document */ Code (markup): So your code should look like @charset "utf-8"; /* CSS Document */ * { margin:0px; padding:0px } Code (markup):
thanks! but do you know how i can get it so the right-side is on the right-side of the content section? and how do i center everything?
Try something like: #content { width:942px; height:auto; background-color:#e7e7e7; float:left; } Code (markup):