I have a question on how to add an image(banner image) in my header.. Here is a code for the templat im using in the header. </head> <body> <div id="wrapper"> <div id="header"> <h1><a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></a></h1> <img src="images/kyokusin.jpg"> </div> <div id="content"> I tried to add <img src="images/blah.jpg"> above the top <div but this didn;'t work.
IS there any way that I can put my main title txt hover on top of the banner? Like use the image as background? thanks. I know a bit of html but the php scripting is not my field..
Try this: body { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kyokusin.jpg"); }
Hi cpucandy, thank you for your help. I put the code to my header but my blog only displays the "code text" no change.