html - How to change directions of the buttons in bootstrap navigation menu? -
i using bootstrap-nav-wizard.css project. here demo:
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"/> <link href="http://acornejo.github.io/bootstrap-nav-wizard/bootstrap-nav-wizard.css" rel="stylesheet"/> <link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"/> <body> <div class="container"> <ul class="nav nav-wizard"> <li class="active"><a href="#">step1</a></li> <li><a href="#">step2</a></li> <li><a href="#">step3</a></li> </ul> <hr> </div> </body>
the step buttons direction left right.
i need change directions of buttons right left.
i have direction:
i want direction:
my question how can change direction of buttons. changes have make in bootstrap-nav-wizard.css change directions of buttons?
thank in advance.
use "pull-right" class in html tag of specific element.
Comments
Post a Comment