Points
43
Solutions
0
In your PageContainer: You will add this code and customize it to your liking.

In your Extra.Less: Add this and customize
Output:


HTML:
<div class="container">
<div class="box"><xf:fa icon="fas fa-info-square" /> About Us<br><hr>
This site is more than just a sharing forum. We develop applications and extension modifications that you won't find anywhere else. </div>
<div class="box"><xf:fa icon="far fa-magnet" /> Torrent Tracker Addons<br><hr>
XBT Torrent Tracker System - Purchase from Homicide<br>
PHP Torrent Tracker System - Purchase from Homicide</div>
<div class="box"><xf:fa icon="fas fa-users" /> Community Resources<hr>
The Resources on our website are provided free.<br>
This does not include our paid addons in the forums.
</div></div>
In your Extra.Less: Add this and customize
CSS:
// Display footer boxes
.container {
display: flex;
border: 2px solid black;
border-radius: 5px;
margin-bottom: 10px;
}
.box {
flex: 1;
margin: 15px;
padding: 40px;
border: 2px solid #ccc;
border-radius: 5px;
}
Output:
