carpinteyrouhf
New Member
http://gyazo.com/17f61b8da9a1dab18c69ef1810920817\[code\]body { font-family: 'Courier-New', Courier, monospace; background-image:url('images/bg.png');}p { color: #fff;}a { text-decoration: none; color: #fff;}a:hover { color: #8e00d9;}/* Header */header { background: url('images/swirl.png'); box-shadow: 0px 1px 10px #000;}header h1 { margin: auto; background: url('images/logo.png') no-repeat; text-indent: -9999px; width: 380px; height: 120px;}/* Navigation Top */\[/code\]My header does not stretch all the way....HTML\[code\]<!doctype html><html> <head> <link rel="stylesheet" type="text/css" href="http://stackoverflow.com/questions/14077811/style.css"> <title>Green Cup Of Tea</title> </head> <body> <header> <h1> Logo here </h1> <div id="navtop"> <ul> <li><a href="http://stackoverflow.com/questions/14077811/#">Home</a></li> <li><a href="http://stackoverflow.com/questions/14077811/#">Work</a></li> <li><a href="http://stackoverflow.com/questions/14077811/#">About</a></li> <li><a href="http://stackoverflow.com/questions/14077811/#">Contact</a></li> </ul> </div> </header> <div id="content"> </div> </body></html>\[/code\]