Two Images in Header Div
-
at https://totalphysiqueonline.com/ I have one image in the div id called HEADER. It is called header.jpg and resides under the control of my CSS sheet. It is located bottom right of the Div and the css style is :
#header {
background:#000000 url(“images/header.jpg”) bottom right no-repeat;
height:191px;
font-family: Trebuchet MS, verdana, arial, sans-serif; color:#fee;
}
I would like a second image to appear within the same DIV tag, but I do not know how to do it. The second image is sistine-chapel2.jpg and I want it to reside behind the title and discription. Is there a way to do this?The code in header.php that currently controls that area is this:
<div id=”header”><h1>“><?php bloginfo(‘name’); ?></h1><span><?php bloginfo(‘description’); ?></span></div>
Any solution to this?
- The topic ‘Two Images in Header Div’ is closed to new replies.