The Step Form Wizard has now RTL support.
You can see broken checkboxes, this is because Bootstrap 3 hasn't native support for RTL,
but if you want to use bootstrap anyway, you can check this plugin on
morteza/bootstrap-rtl.
I am not RTL languages native so if you find any inaccuracy,
do not hesitate to contact me via my profile and I will fix it in next release.
$(document).ready(function () { $("#wizard_example").stepFormWizard({ theme: 'sun', rtl: true, nextBtn: $('<a class="next-btn sf-left sf-btn" href="#">NEXT</a>'), prevBtn: $('<a class="prev-btn sf-right sf-btn" href="#">PREV</a>'), finishBtn: $('<input class="finish-btn sf-left sf-btn" type="submit" value="finish"/>') }); })