Posts: 457
Name: Randy
Location: Northern Wisconsin
|
The background area behind "bob" will only display whatever space "bob" is taking up. The background image doesn't "force" the width and height of the area. You must specify that.
You could set the link (<a href...>) to a width and height equal to the background image. You also have to set that link to display block then.
.header h1 a { width:100px; height:100px; display:block; }
(sub 100px for the background image width and height of course.)
Last edited by racer x; 01-08-2010 at 09:13 PM..
|