We love this template and we are wondering if it is possible to place a video in the header portion of the main page instead of an image.
Any help at all would be greatly appreciated!

teitbite wrote:Hi
Please try to put a video module in header module position and let me know when You will do this, so I'll see how this can be adjusted.
.frontpage #gkBg,
.frontpage #gkHeader {
background: none repeat scroll 0 0 transparent;
}
teitbite wrote:Hi
Header is showing, because You have a video module thereI thought it's a different kind of module, but this one is even better. You may even move this module to "debug" module position and it will work the same.
Now add this code to override.css to remove the background which is covering the video now.
- Code: Select all
.frontpage #gkBg,
.frontpage #gkHeader {
background: none repeat scroll 0 0 transparent;
}
teitbite wrote:Hi
Please enable using overrides in template settings.
teitbite wrote:Hi
I would propose to use autoplay for the video and use transparent images for food.
Tell me exactly where alignment needs some fixing, I'm a programmer, not a designer, so I have some trouble noticing such stuff
.frontpage #gkFooter,
.frontpage #gkPageContent {
background-color: #fff;
}
<script type="text/javascript">
(function($) {
$(document).ready(function() {
function checkForChanges() {
$('.frontpage #gkHeader').height( $(window).height() );
if( $(window).scrollTop() > $(window).height() ) {
$('.frontpage #gkHeader #gkHeaderMod').css('display','none');
} else {
$('.frontpage #gkHeader #gkHeaderMod').css('display','block');
}
setTimeout(checkForChanges, 50);
}
$(checkForChanges);
});
})(jQuery)
</script>