Hi guys,
I want to pin a banner in the left corner like: click me
Once Joomlart used it too to pronounce the design-contest.
I’m using Blank-Theme and T3-Framework.
I put in the header.php this code:
[PHP]<a title=”Facebook” href=”http://facebook.com” class=”banner-corner”>
Facebook</a>[/PHP]
In the template.css this code:
[PHP]/* Banner Corner —*/
.banner-corner {
background:url(“http://www.mysite.com/images/facebook.png”) no-repeat scroll 0 0 transparent;
display:block;
height:125px;
left:0;
position:absolute;
text-decoration:none;
text-indent:-999em;
top:0;
width:125px;
}[/PHP]
Well, I can see the banner in the left top corner, but the link in the header.php doesn’t work!
Maybe you have another solution?