Need Help with header!
-
This is what I have down to make my header but its not working!
#header {
background-image:url(‘//clubpenguinmasters34.files.wordpress.com/2009/01/header.png’’);
} -
You had a single quote mark at the beginning of the URL instead of a double, and two singles at the end of the URL, and you also need to include the http: in the URL.
#header { background-image:url("http://clubpenguinmasters34.files.wordpress.com/2009/01/header.png"); } -
-
Ah Vivian, you are right.
I’ll go hide under my rock now.
Use this instead.
#header { background-image:url('http://clubpenguinmasters34.files.wordpress.com/2009/01/header.png'); } -
-
add this instead
#header a { background-image:url('http://clubpenguinmasters34.files.wordpress.com/2009/01/header.png'); } -
-
- The topic ‘Need Help with header!’ is closed to new replies.