Announcement

Collapse
No announcement yet.

How can I use an image map as banner logo on my site?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How can I use an image map as banner logo on my site?

    hi all,

    I'm in the process of getting the final steps done on my site and one of the things that I need to do is integrate my web forums with the Actinic shop.

    If you check out http://www.londonkettlebells.com you'll see that the main logo/menu is an image map. I want to put the same image map/logo into my actinic site at http://www.lkbshop.com

    Has anyone done this before and how did you do this?

    Cheers
    Ken
    London Kettlebells

    #2
    A good tutorial on server side map (cgi) here http://hoohoo.ncsa.uiuc.edu/docs/tut...gemapping.html

    or use the html <map> tag thus
    Code:
    <MAP NAME=mymap>
    <AREA HREF="/reference/" ALT="HTML and CSS Reference" COORDS="5,5,95,195">
    <AREA HREF="/design/" ALT="Design Guide" COORDS="105,5,195,195">
    <AREA HREF="/tools/" ALT="Tools" COORDS="205,5,295,195">
    </MAP>
    <IMG SRC="sitemap.gif" ALT="Site map" USEMAP="#mymap" WIDTH=300 HEIGHT=200>
    Bill
    www.egyptianwonders.co.uk
    Text directoryWorldwide Actinic(TM) shops
    BC Ness Solutions Support services, custom software
    Registered Microsoft™ Partner (ISV)
    VoIP UK: 0131 208 0605
    Located: Alexandria, EGYPT

    Comment

    Working...
    X