Click to See Complete Forum and Search --> : Image Map Link
absolutmgd13
02-12-2007, 12:53 PM
http://www.matthewdesmond.com/LM_3col/threecolumn.html
I am trying to link the left side of the header(which is a background image, the site is CSS)..from the start to about the curved line but i cant figure out this image map thing! can somebody help me out please!
Centauri
02-13-2007, 01:29 AM
No need for any image map, just a placed and styled <a> element. I assume you want to "link" the "localmagnet" text section of the background image? Place the link after the #headertext div like so <div id="wrap">
<div id="header">
<div id="headertxt">The Local Product Finder for Electronics, Hardware, Furniture & More! </div>
<a href="#"></a>
<div id="search">
<form action="/main/search" method="post">
and in the css file, style it like #header a {
float: left;
width: 165px;
display: block;
height: 30px;
margin-top: 17px;
}
I would put that css just after the #headertext css.
You also have an error in your css file - remove the "<style type="text/css">" from the start on the "</style>" from the end of the css file.
Cheers
Graeme