The Arcive of vBulletin Modifications Site. |
|
[vBMods.rocks] Make Forum Statistics Module Rock! (vBCloud compatible) Details »»
|
|||||||||||||||||||||||||||||
|
[vBMods.rocks] Make Forum Statistics Module Rock! (vBCloud compatible)
Developer Last Online: Sep 2023
Make your Forum Statistics Module rock with these simple HTML (in the Phrase Manager) and CSS changes. This mod is vBCloud compatible. Please see the attachment to see how it looks like.
1. Paste the below CSS code in css_additional template in AdminCP or in Sitebuilder > Style > CSS Editor. Repeat for every active style/theme your forum is using. This code is based off the vB5 Default Style. You may need to tweak some values to suit your theme. Code:
/* Statistics Module - START */
.widget-stat-item {
display: inline-block;
margin: 10px 10px 20px;
width: 39%; /* adjust as needed, may need to increase/decrease it */
box-sizing: border-box;
}
.widget-stat-number {
text-align: center;
font-weight: bold;
font-size: 20px;
color: #001f68; /* adjust color as needed or remove if you want the default color */
}
.widget-stat-label {
text-align: center;
}
.l-xsmall .widget-stat-item {
width: 40%;
}
@media (max-width:320px) {
.l-xsmall .widget-stat-item {
width: 38%;
}
}
/* Statistics Module - END */
topics_x HTML Code:
<div class="widget-stat-item"> <div class="widget-stat-number">{1}</div> <div class="widget-stat-label">Topics</div> </div> HTML Code:
<div class="widget-stat-item"> <div class="widget-stat-number">{1}</div> <div class="widget-stat-label">Posts</div> </div> HTML Code:
<div class="widget-stat-item"> <div class="widget-stat-number">{1}</div> <div class="widget-stat-label">Members</div> </div> HTML Code:
<div class="widget-stat-item"> <div class="widget-stat-number">{1}</div> <div class="widget-stat-label">Active Members</div> </div> Code:
<div class="widget-stat-item" style="display:none;">
<div class="widget-stat-number">{1}</div>
<div class="widget-stat-label">Active Members</div>
</div>
See the Forum Statistics module on https://vbmods.rocks This mod is also posted at https://vbmods.rocks/forum/vbulletin...oud-compatible Screenshots
Show Your Support
|
|||||||||||||||||||||||||||||
| Благодарность от: | ||
| In Omnibus | ||
| Comments |
|
#2
|
|||
|
|||
|
Looking very nice, thank you
|
|
#3
|
||||
|
||||
|
This could easily have been a paid modification. Nice of you to release it free.
|
|
#4
|
|||
|
|||
|
wow thanks bro!
|
|
#5
|
|||
|
|||
|
Work on 5.6.3?
|
|
#6
|
|||
|
|||
|
|
|
#7
|
||||
|
||||
|
5.6.4?
|
|
#8
|
|||
|
|||
|
|
|
#9
|
|||
|
|||
|
Works perfect in 5.6.4.
Thank you! It would look better with padding around the wording such as Topics, Posts, Members etc... |
|
#10
|
|||
|
|||
|
This did not center the "Welcome to our newest member."
I've added this at the bottom css_additional.css: PHP Code:
PHP Code:
|
![]() |
|
|