• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Responsive Issues

Responsive Issues 9 years 11 months ago #31438

  • gerhard4
  • gerhard4's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
I Use a form in the right column of my site, but when I resize my laptop screen to simulate mobile scree, the screen goes blank. Also, on mobile phone, as soon as I interact with the site, the screen goes blank. Have done elimination test, switching on and off modules - and the problem is definitely with RSForm -

Any ideas

www.advance pools.co.za
The administrator has disabled public write access.

Responsive Issues 9 years 11 months ago #31441

  • octavian
  • octavian's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 783
  • Thank you received: 110
I don't know how exactly you came to the conclusion that this is definitely RSForm! Pro's fault when you have the following script straight on your homepage:
<!-- Responsive stacking order -->
<script type="text/javascript">
jQuery(document).load(jQuery(window).bind("resize", listenWidth));
 
    function listenWidth( e ) {
 
        if(jQuery(window).width()<959)
        {
            jQuery("#sidecol_b").remove().insertAfter(jQuery("#content_remainder"));
        } else {
            jQuery("#sidecol_b").remove().insertBefore(jQuery("#content_remainder"));
        }
        if(jQuery(window).width()<959)
        {
            jQuery("#sidecol_a").remove().insertAfter(jQuery("#content_remainder"));
        } else {
            jQuery("#sidecol_a").remove().insertBefore(jQuery("#content_remainder"));
        }
    }
</script>

which actually removes your content. I don't know what that script should be doing (I'm guessing it's to create a responsive layout, although I don't think Javascript should be used in this case) but it's clearly not doing it right.

Without that script your website runs fine.
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!