MyBB Community Forums

Full Version: How do I add the DMCA Badge and the rest
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Add this wherever you want to add the Badges in the INDEX template:

<br />
<div class="navigation">
<center class="badges">
<span class="badge">CODE</span>
<span class="badge">CODE</span>
<span class="badge">CODE</span>
</center>
</div>
<br />

Then add this to global.css of your theme

.badge {
margin-right: 2px;
}
.badge:last-of-type {
margin-right:0;
}

And you are done.
Pages: 1 2