Lay Theme Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    1. Home
    2. Tower92
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 7
    • Best 1
    • Controversial 0
    • Groups 0

    Tower92

    @Tower92

    1
    Reputation
    2
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Tower92 Unfollow Follow

    Best posts made by Tower92

    • RE: Video is played differently

      Got it it worked out! Topic can be closed!
      Thanks!

      posted in Bug Reports
      T
      Tower92

    Latest posts made by Tower92

    • RE: Video is played differently

      Got it it worked out! Topic can be closed!
      Thanks!

      posted in Bug Reports
      T
      Tower92
    • RE: 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.

      posted in Bug Reports
      T
      Tower92
    • Video is played differently

      Hey,
      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 Website

      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!

      posted in Bug Reports
      T
      Tower92
    • RE: Pages are combined with homepage and homepage is displayed twice in a row

      @arminunruh Thanks alot. That was it!

      posted in Bug Reports
      T
      Tower92
    • RE: 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...

      posted in Bug Reports
      T
      Tower92
    • Pages are combined with homepage and homepage is displayed twice in a row

      Hey,

      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: Chrome

      Thanks in advance!

      posted in Bug Reports
      T
      Tower92
    • Carousel is not working at all

      Hello,
      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?

      posted in Addons
      T
      Tower92