View Full Version : Resolved How to add url for tihs png image ?
volkantr19
12-04-2013, 02:50 PM
Hello everybody;
This is my example website: http://.com/
There is an image at the bottom on the left side, writing ''Visit Site''..
How can i add an URL (for example www.dynamicdrive.com) for ''Visit Site''..
If somebody clicking on ''Visit Site'',they are direct to ''www.dynamicdrive.com''
Thank you for your help in advanceç
looks like you figured it out…?
If your question has been answered, please mark your thread "resolved":
On your original post (post #1), click [edit], then click [go advanced]. In the "thread prefix" box, select "Resolved". Click [save changes].
volkantr19
12-04-2013, 05:04 PM
My problem is still not resolved.
After resolving, i mark "resolved" like always that i do..
mlegg
12-04-2013, 06:28 PM
it currently says javascript next to href="
<map id="visitLink" name="visitLink">
<area href="www.google.com" coords="165,190,300,215" alt="" />
</map>
I put google.com but put whatever the url you need there
jscheuer1
12-04-2013, 06:29 PM
Change:
<img class="link" src="assets/images/footerLink.png" usemap="#visitLink" alt="footerLink" />
<map id="visitLink" name="visitLink">
<area href="javascript:;" coords="165,190,300,215" alt="" />
</map>
To:
<img class="link" src="assets/images/footerLink.png" usemap="#visitLink" alt="footerLink" />
<map id="visitLink" name="visitLink">
<area href="http://www.dynamicdrive.com/" coords="165,190,300,215" alt="" />
</map>
volkantr19
12-04-2013, 07:05 PM
Thank you so much JOHN,
for always resolving my problem...
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.