(display: block is specified in a global statement earlier in the css file). As extra info, this is a WP 3.3.1 build using the H5 theme by Jeff Starr.
I have a horrible feeling I'm missing something terribly obvious and will be insanely embarrassed once someone points it out to me, but would be thrilled if someone can tell me what I'm doing wrong.
To break it down and explain exactly what you did..."background-image" is to specify just the image. Using the shorthand "background" instead, you can specify the repeat property as well as position and background color all in one line
Thanks for the help, folks -- don't know why I was stuck on using background-image instead of background -- feel a bit foolish now, as I really did know that -- thanks again!
displays the image, but with the image repeating.
makes the picture disappear entirely. For reference, here's the entire block for the header:
(display: block is specified in a global statement earlier in the css file). As extra info, this is a WP 3.3.1 build using the H5 theme by Jeff Starr.
I have a horrible feeling I'm missing something terribly obvious and will be insanely embarrassed once someone points it out to me, but would be thrilled if someone can tell me what I'm doing wrong.
The easiest way
or else
This:
Should actually be this:
EDIT: As @karlpcrowley already said.
background: url("images/pic.jpg") transparent center center no-repeat;
so you can control position (here : 'center center') and background-color (here :'transparent' ) if your image upload fails.