·
Added a discussion

How do I add a video to the Homepage?  Currently I just have text there..

  • 1143
Comments
    • Homepage settings /studio/builder_page.php?type=system&page=sys_home

      • so when you say builder_page.php do you mean the pages because I don't see anything else that's similar?? 

        • I showed you the path to the settings, just paste this into your website’s browser.

          • I typed /studio/builder_page.php?type=system&page=sys_home and it navigated to Pages.  I was already in Pages.  I'm not sure where it is possible to add video to home page there.  Can you elaborate or take a screen shot.  

            • Hello HandE I added a video before logging in or registering in https://tnoa.com.ar. I don't know if that's what you're looking for. 

              However, if you want to add a video on the main page (after logging in), as in this image, on the right:

              image_transcoder.php?o=bx_froala_image&h=3622&dpx=1&t=1590104206

              So you have to go to Studio-Pages-Homepage (yourURL/studio/builder_page.php?Type = system & page = sys_home) and add a raw block by clicking the blue button on the right that says "Add block".

              image_transcoder.php?o=bx_froala_image&h=3623&dpx=1&t=1590104484

              Then you must add the code corresponding to the video in the raw block.

              image_transcoder.php?o=bx_froala_image&h=3624&dpx=1&t=1590104594

              You click on the raw block and add the code. 

              image_transcoder.php?o=bx_froala_image&h=3625&dpx=1&t=1590104741

              I added the following:

              <style>

              .bx-spl-videowrapper {

                      position: relative;

                        padding-bottom: 56.25%;

                        padding-top: 25px;

                      height: 0px;  

                  }

                    

              .bx-spl-videowrapper iframe {

                      position: absolute;

                        left: 0px;

                        top: 0px;

                        right: 0px;

                        bottom: 0px;

                        height: 100%;

                        width: 100%;

                  }

              </style>

                

              <div class="bx-spl-videowrapper">

              <iframe src="video url?rel=0" frameborder="0" allowfullscreen></iframe>

              </div>

               

              Regards

               

              Login or Join to comment.