2013-07-01, 09:13 PM
2013-07-01, 10:04 PM
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:
Adding this to global.css will get rid of the dots in front of list items:
You can style it however you wish.
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, 11:25 PM
(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.Just above the footer
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.