MyBB Community Forums

Full Version: Add partner links to the footer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I add partner links to the footer
Under each other
This can be done many ways... You didn't specify any detail so I can't guess where you want it and how should it look.

For example adding this to footer template (on the top or wherever you want, but be careful to keep the HTML proper) will make a list:

<ul class="partners">
<li><a href="www.firstpartnerlink.com">First Partner</a></li>
<li><a href="www.secondpartnerlink.com">Second Partner</a></li>
<li><a href="www.thirdpartnerlink.com">Third Partner</a></li>
</ul>

Adding this to global.css will get rid of the dots in front of list items:
.partners {
    list-style: none;
}

You can style it however you wish.
(2013-07-01, 10:04 PM)Destroy666 Wrote: [ -> ]This can be done many ways... You didn't specify any detail so I can't guess where you want it and how should it look.

For example adding this to footer template (on the top or wherever you want, but be careful to keep the HTML proper) will make a list:

<ul class="partners">
<li><a href="www.firstpartnerlink.com">First Partner</a></li>
<li><a href="www.secondpartnerlink.com">Second Partner</a></li>
<li><a href="www.thirdpartnerlink.com">Third Partner</a></li>
</ul>

Adding this to global.css will get rid of the dots in front of list items:
.partners {
    list-style: none;
}

You can style it however you wish.
Just above the footer

[Image: b69edb172090cf0cbd8593083a166610.png]