Yaparsın tabii biraz css bilgisiyle. İhtiyacın olan şablon kaba taslak böyle birşey;
Alıntı
<html>
<head>
<style>
.footer {
padding: 0 10px 20px 10px;
margin: 10px;
background:#3B3B3B;
width: 650px;
height: 300px;
line-height: 1.6em;
color: #FFFFFF;
}
.alt {
text-align: center;
float: left;
width: 200px;
margin: 5px 5px 5px 0px;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>Yeni Sayfa 1</title>
</head>
<body>
<div class="footer">
<div class="alt">
<h3>En çok oylananlar</h3>
<?php if (function_exists('get_highest_rated')): ?>
<ul>
<?php get_highest_rated(); ?>
</ul>
<?php endif; ?>
</div>
<div class="alt">
<h3>En çok indirilenler</h3>
<?php if (function_exists('get_most_downloaded')): ?>
<?php get_most_downloaded(); ?>
<?php endif; ?>
</div>
<div class="alt">
<h3>En çok okunanlar</h3>
<?php if (function_exists('get_most_viewed')): ?>
<ul>
<?php get_most_viewed(); ?>
</ul>
<?php endif; ?>
</div>
</div>
</body>
</html>