html - Should I use Panels to create boxed/gallery of summaries layout? (See picture) -
hi create page render above in bootstrap website i'm working on. bootstrap panel's best approach create this, have override border, horizontal rule, , background colours. believe easy enough there easier approach this?
using box in adminlte combined columns of bootstrap, , changing background-color of box should give desired outcome. following.
<style> .box .orange{ background-color: orange; } .box .blue{ background-color: blue; } </style> <div class="row"> <div class="col-md-1"> <div class="box box-solid orange"> <div class="box-header with-border"> <h3 class="box-title">title of panel</h3> <div class="box-body"> <p>27 people booked in</p> <p>25 people attented</p> </div> </div> </div> </div> <div class="col-md-1"> <div class="box box-solid blue"> <div class="box-header with-border"> <h3 class="box-title">title of panel</h3> <div class="box-body"> <p>27 people booked in</p> <p>25 people attented</p> </div> </div> </div> </div> </div>
Comments
Post a Comment