html - Should I use Panels to create boxed/gallery of summaries layout? (See picture) -


desired view

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

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - Bypass Geo Redirect for specific directories -

php - .htaccess mod_rewrite for dynamic url which has domain names -