1

enter image description hereI am adding buttons in model-footer but it is not getting aligned in line instead it comes to next line.

<div class="modal-footer">              
         <form method="post" action="admin_view">
           <a type="submit" name="accepted" value="<?php echo $object['id'];?>" class="btn btn-success">Accepted Job</a> 
          </form>

          <form method="post" action="reject_job">
             <a type="submit" name="rejected" value="<?php echo $object['id'];?>" class="btn btn-danger">Rejected Job</a> 
          </form>

          <button type="button" class="btn btn-default" data-dismiss="modal">close</button>
     </div>
Jay Desai
  • 231
  • 1
  • 2
  • 12

2 Answers2

0

Use "pull-left" class in btn. Or if you want to right then use "pull-right" Do you want more help. go to this url for reference Bootstrap: change div order with pull-right, pull-left / 3 columns

<div class="modal-footer">              
         <form method="post" action="admin_view">
           <a type="submit" name="accepted" value="<?php echo $object['id'];?>" class="btn btn-success pull-left">Accepted Job</a> 
          </form>

          <form method="post" action="reject_job">
             <a type="submit" name="rejected" value="<?php echo $object['id'];?>" class="btn btn-danger pull-left">Rejected Job</a> 
          </form>

          <button type="button" class="btn btn-default pull-left" data-dismiss="modal">close</button>
     </div>
Community
  • 1
  • 1
rajeev
  • 115
  • 8
0

try this

<div class="modal-footer">  

   <div class="col-md-4">
       <form method="post" action="admin_view">
           <a type="submit" name="accepted" value="<?php echo $object['id'];?>" class="btn btn-success">Accepted Job</a> 
      </form>
   </div>

   <div class="col-md-4">
      <form method="post" action="reject_job">
           <a type="submit" name="rejected" value="<?php echo $object['id'];?>" class="btn btn-danger">Rejected Job</a> 
      </form>
   </div>

   <div class="col-md-4">
       <button type="button" class="btn btn-default" data-dismiss="modal">close</button>
   </div>

</div>
Fahmi B.
  • 758
  • 2
  • 10
  • 23