-
AuthorPosts
-
March 30, 2015 at 6:03 am #238000
Sorry, had to redo the template and forgot to turn off the shadow. Every once in a while when I change something on the template it gets moved from the template to sliders and I have to recreate the template. Happened a couple of times now.
The Shadow is now off again, but that tiny bit of scrollbar-space is still there.
#2/#3 I already figured it wouldn’t ne the easiest job, but thanks anyhow. Will have a look into it
March 30, 2015 at 6:50 am #238025Hi there,
For that, you can use following under Custom > CSS in the Customizer:
.x-navbar-fixed-top-active .x-navbar-wrap { margin-bottom: 0; }
This should remove the scrollbar 🙂
Thanks!
March 31, 2015 at 8:05 am #238961I’ve just realized that the ‘about us’ submenu seems to be hidden behind the iframe. Seems I have to set the z-index accordingly, but can’t quite figure out where.
March 31, 2015 at 9:01 am #239018Hi there,
Upon checking, your submenus are appearing just fine at my end, see: http://prntscr.com/6np0fs. Please confirm the issue again.
In the meantime, the CSS you can use to target your submenus is following:
.desktop .sub-menu { z-index: 10000; }
Thanks!
March 31, 2015 at 9:18 am #239033Hi,
if you are on the renderings site (with the revolution slider) it works, but under one of the 2 linked panoramas (with the full screen) it won’t work (see http://imgur.com/IS4VKsb – the mouse doesn’t show on the ‘about us’ but it is there, trust me :D).
I’m not sure if it’s some overflow:hidden; issue or a z-index issue.
I added the code from above, but it didn’t change anything.March 31, 2015 at 12:00 pm #239160Hi there,
Yes, this is due to a JavaScript conflict on those pages. Are you using any custom script or plugin for those pages? If so, try removing/disabling them and see if the issue resolves.
Thanks!
April 1, 2015 at 3:03 am #239621yes. As stated earlier I’m using the following peace of code to ensure the full screen of the iframe:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"> </script> <script> function myFunction() { $("#panorama_iFrame").css("height", $(window).height()); } $(document).ready(myFunction); </script> <iframe id="panorama_iFrame" src="http://panorama.planbagentur.de/dt.html" width="100%" seamless></iframe>
I’m assuming the loading of the jquery file is responsible. However if I do not load it, I can’t use the $(window).height()
April 1, 2015 at 3:19 am #239633upon further googling I found that I have to use the following:
jQuery(document).ready(function($) { $('#panorama_iFrame').css('height',$(window).height()); });
Now it’s working. Thanks everyone.
April 1, 2015 at 3:24 am #239638Glad to hear you’ve figured it out! Have a good day. 🙂
March 19, 2016 at 1:19 am #844036Newbie question here… That code you used to get your iframe to go 100% height, where did you put it? I tried in “raw content” element but nothing showed up.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"> </script> <script> function myFunction() { $("#panorama_iFrame").css("height", $(window).height()); } $(document).ready(myFunction); </script> <iframe id="panorama_iFrame" src="http://panorama.planbagentur.de/dt.html" width="100%" seamless></iframe>
March 19, 2016 at 1:44 am #844052Hello There,
Thanks for updating this thread! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
Regards.
March 19, 2016 at 1:46 am #844054Hello! I trying to use your solution as well. How did you get the scroll bar to go away? There seems to be a tiny section at the bottom that is causing it to appear.
March 19, 2016 at 2:03 am #844067Hi there,
Please provide us with URL of page in question so we can take a closer look.
Thanks.
March 19, 2016 at 12:11 pm #844418It’s not on a live server, just on a local host.
March 19, 2016 at 12:19 pm #844423Okay I set a live page on one of my sites. It’s doing the same thing…
-
AuthorPosts