As you can see in the attachment,my header (the green portion) wont go to the top left, there is still some space there. I try using several different elements and no luck. Suggestions?
Post a live link, or HTML and CSS coding so we can see how you are coding it. Seeing an example doesn't help very much. THOUGH make sure in your CSS your body looks like: body { margin: 0; padding: 0; ... w/e else } Code (markup):
CSS: .header { background-image: url(bgheader.png); background-repeat: repeat-x; padding: 0; margin: 0; } Code (markup): HTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Site</title> <link href="Project/main.css" rel="stylesheet" type="text/css" /> </head> <body> <div class=header><img src="Project/title.png" alt="Site" width="355" height="151" vspace="0" /></div> </body> </html> HTML:
OHH! Hahah. Didn't think I'd have to make a body. Just though I had to add onto my header class. Thanks!