I have an HTML page which shows a jpeg image and has an image map. When you hover over a face it shows the name of the person.
Example
<html>
<head>
</head>
<body>
<img src="pic.jpg" usemap="#mymap">
<map name="mymap">
<area shape="circle" title="name1" href="javascript:void(0);" alt="name-1" coords="1720,802,66" />
<area shape="circle" title="name2" href="javascript:void(0);" alt="name-2" coords="1932,797,68" />
</map></body>
</html>
I created a "blank" .htt within my album and pasted my html code into it but when the album displays there is no functioning hover
<ja:include page="page-header.inc" /> <%-- Keep this --%>
<%-- The following include file manages to display the Title and Comment (see Detail view!).
You can replace this with your own content. --%>
<ja:include page="templates/Custom.inc" />
<ja:include page="page-footer.inc" /> <%-- Keep this --%>
<html>
<head>
</head>
<body>
<img src="pic.jpg" usemap="#mymap">
<map name="mymap">
<area shape="circle" title="name-1" href="javascript:void(0);" alt="name-1" coords="1720,802,66" />
<area shape="circle" title="name2" href="javascript:void(0);" alt="name-2" coords="1932,797,68" />
</map></body>
</html>
Is it possible to get this to work within the Story skin please.
Thank you
Edited by: Laza on 28 Jun 2023, 11:05