• 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: Move Page Progress?

Move Page Progress? 10 years 4 months ago #29834

  • wirecreative
  • wirecreative's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 21
  • Thank you received: 2
Has anyone tried moving the "Page Progress" bar from the top of the form to the bottom, so that it's adjacent to the "PREV" and "NEXT" buttons?

I can't find it in the layout editor and the CSS-only solutions are not ideal. Can this be edited somehow without hacking the component files?
The administrator has disabled public write access.

Move Page Progress? 10 years 4 months ago #29872

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
This can be easily achieved through jQuery, simply head over to CSS and Javascript section of your form, and insert this:
<script>
jQuery(document).ready(function(){
	jQuery('.rsformProgress').appendTo('#userForm');
});
</script>

Let me know if it works
My help is not official customer support. To receive your support, submit a ticket by clicking here
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!