I'm only a rookie, so I would appreciate any help and please don't answer with to complicated replies.
I know how to add an image and make it a link or add a link.
However, I have this background image on my website. All the images you see are one picture.
I want my members to be able to hover over any part of the “key hole” and be able to click and send them to my home page.
Is this even possible to do?
Script…
<?php
ob_start();
?>
<!doctype html>
<html>
<head>
<title>Page Title</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<style type="text/css">
<!--
body
{
background-image:url('app/web/img/login_logo.jpg'); background-position:center top;
background-repeat:no-repeat;
}
.center {
text-align: center;
}
-->
</style>
</head>
<body>
{APP_TPL}
</body>
</html>
<?php include 'listings.php'; ?>
Thank you, Scott