Hi Guys
I would like to have some ad banners on my site. The theme I am using is from Artisteer and I can't work out how to get an ad banner in the header region.
I'm afraid my XHTML and CSS is practically zero. Could anyone help? Here is the CSS for my header:
/* begin Header */
div.art-Header
{
margin: 0 auto;
position: relative;
z-index:0;
width: 980px;
height: 108px;
}
div.art-Header-jpeg
{
position: absolute;
z-index:-1;
top: 0;
left: 0;
width: 980px;
height: 108px;
background-image: url('images/Header3.jpg');
background-repeat: no-repeat;
background-position: center center;
}
/* end Header */
You might be better off looking for an ad banner plugin.
I still need to work out how to put the banner into the header tho?
a link to your site would help;
and the code of header.php - please paste the code into a http://wordpress.pastebin.com/ and post the link to it here.
also the size and image location of your banner image.
Can anyone help with this please?
You could try changing:
<div class="art-Header-jpeg"></div>
to:
<div class="art-Header-jpeg"><img src="full_url_to/image.jpg" width="400" height="80" alt="Text alternative goes here" /></div>
in header.php but you'd almost certainly need to amend the site's CSS as well.