Live Demo
Awesome stats
53
Visiteurs
1,027
Articles
3,202,479
Tasses de café
Markup
<?php
/**
* @package Joomla.Site
* @subpackage mod_stats
* @Author web-eau.net
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
?>
<h3 class="display-4 text-center text-primary pt-5">Awesome stats</h3>
<section id="counter">
<div class="row stats-module<?php echo $moduleclass_sfx; ?>">
<?php foreach ($list as $item) : ?>
<div class="col text-center">
<div class="count">
<p class="number">
<?php
echo number_format($item->data,0,' ',',');
?>
</p>
<h4><?php echo $item->title; ?></h4>
</div>
</div>
<?php endforeach; ?>
</div>
</section>
CSS
#counter {
color: #fff;
display: block;
overflow: hidden;
text-align: center;
padding: 100px 0;
}
#counter .count {
padding: 50px;
background: #74E2FF;
color: #fff;
text-align: center;
}
.count h4 {
color: #fff;
font-size: 16px;
margin-top: 0;
}
#counter .number {
font-size: 30px;
font-weight: 700;
margin: 0;
}



