Example of what the footer will look like:http://i.imgur.com/b55slsy.png How To:1) Log into your ACP and to click on the 'Look & Feel' tab. Chose the skin you want to add the footer to.2) Click on 'globalTemplate' and find the following code: <if test="showdebuglevel:|:$this->memberData['member_id'] and $this->settings['debug_level']"> <div id='ipsDebug_footer'> <strong>{$this->lang->words['time_now']}</strong> {$footer_items['time']}Once you've found that code, add the following code above the code you just found: <!-- Footer --><div id='siteinfo' class='main_width'><div id="siteinfo-company" class='left ipsPad_double'> <h3>Link Section</h3> <ul> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> </ul></div><div id="siteinfo-community" class='left ipsPad_double'> <h3>Link Section</h3> <ul> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> </ul></div><div id="siteinfo-social" class='left ipsPad_double'> <h3>Link Section</h3> <ul> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> </ul></div><div id="siteinfo-account" class='left ipsPad_double'> <h3>Link Section</h3> <ul> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> </ul></div><div id="siteinfo-content" class='right ipsPad_double'> <h3>Site Info</h3> <p class="copyright">© 2012 - 2013 <a href="#">Your Site</a><br><!-- Copyright Information --> <p id='copyright'> </p> <!-- / Copyright --> </p></div><!-- Footer end -->3) Once done with that, save your progress. Then, head over to the CSS tab and click on 'ipb_styles.css'On this step, you can add this code anywhere you want, but I suggest adding it near the bottom. /* Footer */#siteinfo {color:#888;line-height:20px;overflow:hidden;margin:0 auto;padding:10px 12px;}#siteinfoa {color:#5A5A5A;border-bottom: 1px solid #5A5A5A;display: block;}#siteinfo a:hover {color:#000000;border-bottom: 1px solid #000000;display: block;}#siteinfo>div {float:left;margin-right:15px;}#siteinfo>#siteinfo-content {float:right;margin-right:0;}#siteinfoh3 {margin-bottom:8px;border-bottom: 2px solid #d9d9d9;padding-bottom: 8px;font-size:18px;font-weight:400;}#siteinfo li,#siteinfop {list-style:none;font-size:12px;line-height:150%;}/* Footer end */4) Save your footer and you're done!Note: You will need to change the <a href="#"> in the footer HTML in order for the links to work. Hope you found this useful. :smile: