Logo mit Hintergrundbild versehen

Barthez
HI Leute,

ich möchte auf meiner Homepage

das Logo oben auf 100% Browserbreite mit einem Hintergrundbild versehen. Wie mache ich das?

mein CSS im header sieht so aus:


#header {
position:relative;
margin:0;
padding:0;
height:164px;
width:980px;
background-image:url(bg_header.jpg);
}


bg_header.jpg ist das Logo das nochmal einen hintergrund bekommen soll der dann auch noch breiter ist als diese 980px, nämlich 100% ... was muß ich da machen?

Danke sehr für Eure Hilfe
Madd Eye
/* header */
.header {
border-top: 2px solid #663;
background: #DAD7C5 url(img/header.jpg) no-repeat left bottom;
position:relative;
margin:0;
padding:0;
height:164px;
width:980px;
}


Müsste Fuktinieren
Barthez
wo füge ich da die hintergrundgrafik ein?
Madd Eye
Oh O.o

srry falsches Skript hier das Richtige

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
#header {
	position: relative;
	height: 70px;
	background: #FE0 url(images/Header_endlos.gif) repeat-x;
}
#header a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	outline: thin solid;
	background: #F00 url(images/Header.gif) no-repeat 0 0;
}
#header img {
	position: absolute;
	top: 0;
	right: 0;
	padding-top: 5px;
	padding-right: 25px;
}


Musst nur noch nach deinen Wünschen verändern