Forum Discussion
RainerRosskopf
3 years agoCommunity Member
Links in Storyline
I have created a Learning in Storyline with various links to web content (web object) built in. Now I have the problem that in Review and in our LMS (Workday-Learning) the content is not displayed a...
Jürgen_Schoene_
3 years agoCommunity Member
check the links with a small html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>iFrame test</title>
<style>
iframe {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border: none;
overflow: hidden;
}
</style>
</head>
<body>
<iframe src='https:// ... '></iframe>
</body>
</html>
add your url(s) in the src attribute