• Closed
  • tilly
    Spectator
    April 11, 2016 at 2:54 am #26421

    Hello I have a need to include a clickable image map on a page. It renders fine on wp with basic themes but does not render properly with evolve. Are there theme specific considerations that I need to be aware of to get image maps to render properly with Evolve.

    Denzel Chia
    Moderator
    Posts: 2656
    April 11, 2016 at 9:21 am #26428

    Hi,

    Please use this working example.

    <img width="145" height="126" usemap="#planetmap" alt="Planets" src="http://www.w3schools.com/tags/planets.gif">
    <map name="planetmap">
    <area href="https://en.wikipedia.org/wiki/Sun" alt="Sun" coords="0,0,82,126" shape="rect">
    <area href="https://en.wikipedia.org/wiki/Mercury_%28element%29" alt="Mercury" coords="90,58,3" shape="circle">
    <area href="https://en.wikipedia.org/wiki/Venus" alt="Venus" coords="120,58,8" shape="circle">
    </map>

    Thank you