Hi Paul
Just read your post about replacing the WP header text with an image. I am new to CSS and not sure if I am on the right track here. Right now I am using a random image generator code from:
http://ma.tt/scripts/randomimage/It works well, as you can see at my site -
www.frontierservicedesign.com.
Now what I want to do is replace the standard overlay text (set up in WP admin settings) with a graphic file that includes my company logo and a tagline that will transparently OVERLAY the background images that are now being randomly selected. Right now, the header section of my style.css looks like this:
/* begin Header */
div.Header
{
margin: 0 auto;
position: relative;
width: 888px;
height: 175px;
}
* html div.Header
{
font-size: 1px;
}
div.Header div
{
width: 100%;
height: 100%;
background-image: url('images/header-images/random.php');
background-repeat: no-repeat;
background-position: center center;
text-align: left;
}
/* end Header */
In reading your post, it looks like I am already using the "background-image" for my randomized background photos. How or where do I insert my "overlay" graphic that will show my logo/tagline on top of these images. I want to be able to "see thru" the top image's transparent sections to see the photos beneath.
Thanks - this is a very useful site!
Coopdog