Skip to main content

Hi All,

I am building a library of modules for succession planning/emergency coverage for a very technical role. In terms of teaching this, there’s a few software training modules, a few “in the field” doing collection modules, and a few “in the lab” technical equipment modules. I created a page for this job and I have these divided up by those areas.

I also have a full learning plan of all the content chronologically like this image below for what steps the person is doing to process oil. I have each of the points on this screenshot of a Storyline file as a separate module.

Has someone developed a way in Docebo to make something like this interactive to allow someone to more easily visualize the content to select what they need? I know I can do this within Storyline, but given that most of this content is SUPER technical, I think it’ll be used in a just in time manner after their initial onboarding. 

Or, if this is an emergency situation and someone has to come in and do a collection or run a sample, I want them to quickly get to just that specific content. 

 

I appreciate your advice.

@EmilyW_Tacoma Hi, Emily … If I understand you correctly, you’re looking to create an image map. You can do this with HTML/CSS

Here’s a sample code I got from ChatGPT that outlines what you’re looking for.

<img src="your-image.jpg" usemap="#image-map">
<map name="image-map">
    <area shape="rect" coords="34,44,270,350" href="http://example.com" alt="Example">
    <area shape="circle" coords="200,200,50" href="http://anotherexample.com" alt="Another Example">
</map>

Reply