"Shopping Cart BS 3"
Bootstrap 3.0.0 Snippet by crazyR

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <div class="col-sm-12 col-md-10 col-md-offset-1"> <table class="table table-hover"> <thead> <tr> <th class="col-sm-8 col-md-6">Service</th> <th class="col-sm-1 col-md-1 text-center">Price</th> </tr> </thead> <tbody> <tr> <td> <div class="media"> <div class="media-body"> <h4 class="media-heading"><a href="#">Service/Product name</a></h4> <p><strong>Group:</strong> group name here</p> <p>Description</p> </div> </div> </td> <td class="text-center"><strong>£4.87</strong></td> </tr> <tr> <td><h3>Total</h3></td> <td class="text-right"><h3><strong>£14.61</strong></h3></td> </tr> <tr> <td> <button type="button" class="btn btn-default"> <span class="glyphicon glyphicon-shopping-cart"></span> Continue Shopping </button> </td> <td> <button type="button" class="btn btn-success"> Checkout <span class="glyphicon glyphicon-play"></span> </button> </td> </tr> </tbody> </table> </div> </div> </div>

Related: See More


Questions / Comments: