Yes – it’s possible assuming you have the CSS, HTML and PHP skills.
So Word Press supports layers?
I tried to use z-index positioning, but it did not do anything…
So Word Press supports layers
WordPress supports any and all CSS.
Thank you for your reply, I’ll try to figure out what would do the trick…
OK, if anyone needs help with layers/levels:
to position your logo above the header image:
———————————————
add this to your style.css file in your theme
#logo{
height: LOGO HEIGHT IN PX;
width: LOGO WIDTH IN PX;
background: url(images/logo.png) no-repeat;
position: absolute;
top: 50;
left: 50;
z-index:500;
}
Then within <div id=”branding” role=”banner”></div> put this in your theme header.php file:
<div id=”logo”></div>