Search code examples
jquerycssright-to-leftwizardjquery-steps

How to use jquery steps wizard with right to left steps


I'm using jquery-steps plugin to make a wizard, but the problem is I can not make the steps right to left aligned.

.e.g: my steps: 1.step one 2.step two my expectation: 2.step two 1.step on (also i'm using an rtl language :) )

note: i'm using dynamically jquery step make with (You can check it here)

I tried:

$(document).ready(function() {
  $("#wizard").steps(
    rtl: true
  );
});

but didn't work, how can I solve it? Regards


Solution

  • have you tried this : ?

    .wizard>.steps>ul>li, .wizard>.actions>ul>li {
        float: right;
    }