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
have you tried this : ?
.wizard>.steps>ul>li, .wizard>.actions>ul>li {
float: right;
}