• Illustrator
  • Photoshop
  • Illustrator

    Vector-based design and drawing
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
  • Photoshop

    Photo editing and manipulation
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

WK2 Slideshow Panel

  • About 1
  • About 2
  • About 3
  • About 1

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.

    Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.

  • About 2

    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.

    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.

  • About 3

    Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.

    Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a,

  • About 1
  • About 2
  • About 3

Overlay

Overlay

Overlay

Overlay

  • About 1
  • About 2
  • About 3
  • About 1

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.

    Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.

  • About 2

    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.

    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.

  • About 3

    Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.

    Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a,

  • About 1
  • About 2
  • About 3

Html-element with script for muted video

Code for html-element (without code for text overlay)
<div class="video-container">
<!-- 1. The <iframe> (and video player) will replace this <div> tag. -->
<div id="player"></div>
</div>
<script>
// 2. This code loads the IFrame Player API code asynchronously.
var tag = document.createElement('script');

tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

// 3. This function creates an <iframe> (and YouTube player)
// after the API code downloads.
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
videoId: '9kj_vwleR6Q', // YouTube Video ID
width: 1200, // Player width (in px)
height: 675, // Player height (in px)
playerVars: {
autoplay: 1, // Auto-play the video on load
controls: 0, // Hide pause/play buttons in player
showinfo: 0, // Hide the video title
modestbranding: 1, // Hide the Youtube Logo
loop: 1, // Run the video in a loop
playlist: '9kj_vwleR6Q',
fs: 0, // Hide the full screen button
cc_load_policty: 0, // Hide closed captions
v_load_policy: 3, // Hide the Video Annotations
autohide: 0 // Hide video controls when playing
},
events: {
'onReady': onPlayerReady,
}
});
}
//4. This code sets volume to 0.
function onPlayerReady(event) {
event.target.setVolume(0);
event.target.playVideo();
}
</script>
Add following css in Section css:
.video-container {  
position:relative;
padding-bottom:56.25%;
height:0;
overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}
NOTE: The "padding-bottom" % is based on the aspect ration of the video. For a video with the aspect ratio 16:9 (most typical), you must divide 9 by 16 (0.5625 or 56.25%). See THIS ARTICLE for more information about making videos responsive.
NOTE: The footer is purposely not displayed on this page. To do this, under the tab "Page Display" for the menu item, class is set to "testpage7". In addition, the class on the footer is set to "tm-footer". Finally, the following custom css has been added:
.testpage7 .tm-footer {
display: none;
}