Got it it worked out! Topic can be closed!
Thanks!
Tower92
Posts
-
Video is played differently -
Video is played differently@arminunruh Thanks for your reply and sorry for my late reply.
I implemented the code you provided. The video is displayed the whole time. I think I understood the content within the link you provided but I cannot figure out a solution.
-
Video is played differentlyHey,
I have integrated a video into my website via html. With the help of Javascript, the video appears from a certain height and disappears again after a certain height. If I access the website via www.noals.de, everything works as it should. But when I go to Contacts, for example, and then back to the Home page via the Site title, the video is permanently there.
What could be the reason for this?My code:
Custom CSS for Desktop Version
#fixed-video { position: fixed; top: 55%; left: 62%; transform: translate(-50%, -50%); }
Custom <head> content
<script> jQuery(document).ready(function($) { var $window = $(window), $fixedVideo = $('#fixed-video'), videoHeight = $fixedVideo.outerHeight(), showAtHeight = 500, hideAtHeight = 1850; $fixedVideo.hide(); $window.scroll(function() { var scrollTop = $window.scrollTop(); if (scrollTop > showAtHeight && scrollTop < hideAtHeight) { $fixedVideo.fadeIn(); } else { $fixedVideo.fadeOut(); } }); }); </script>
Thanks in advance!
-
Pages are combined with homepage and homepage is displayed twice in a row@arminunruh Thanks alot. That was it!
-
Pages are combined with homepage and homepage is displayed twice in a row@felix_rabe Unfortunately this did not help.
Another weired thing is if I delete some Text it will be deleted within the first row but will be still visible in the second...
-
Pages are combined with homepage and homepage is displayed twice in a rowHey,
I am currently creating the mobile version of my website and have "About us" and "Contact us" in the "Home" menu. When I click on About us or Contact us, I am redirected to the respective page, but it is a combination of the homepage and About us / Contact us.
Another error is that my homepage is now displayed twice in a row.Can someone help me with that?
My website: noals.de
Browser: ChromeThanks in advance!
-
Carousel is not working at allHello,
I've been trying to get carousel to work for hours but nothing works. I have reset my entire website and thus also updated all plugins. I don't see my images in Chrome or Safari. :(Please help me!
PS.: I also tried getting along with the full screen slider...does not work either. What am I doing wrong?