Using the [How-to] Add information info links in footer made by Maansy I have come a long way but I need some help on the last part.
This I what I want (like 3 colums):
link1 - Powered by OpenCart - link4
link2
link3
I'm not getting the link4 to appear where I want it, see attached image.
This is my footer.tpl
Code: Select all
<div id="footer">
<div class="div1">
<ul>
<?php foreach ($informations as $information) { ?>
<li><a href="<?php echo $information['href']; ?>"><?php echo $information['title']; ?></a></li>
<?php } ?>
</ul>
</div>
<div class="div2">
<?php echo $text_powered_by; ?>
</div>
<div class="div3">
<ul>
<li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>
<li><a href="<?php echo $sitemap; ?>"><?php echo $text_sitemap; ?></a></li>
</ul>
</div>
</div>
</div>
<?php echo $google_analytics; ?>
</body></html>