Below the Board:
<script>
function BlogLinks(name,url){
if(location.href.match("/blog/")){
//Created by Agent Moose (smcodes.smfforfree3.com)
var a = document.getElementsByTagName("a");
for(x=0;x<a.length;x++){
if(a[x].innerHTML == "Change Blog Settings"){
a[x].parentNode.innerHTML += " · <a href='" + url + "'>" + name + "</a>";
};};};};
BlogLinks("NAME","URL");
</script>
This will add how ever many links you want next to the "Change Blog Settings" link in the Blog section.
NAME = The Name of the URL
URL = The URL.
To add more links, add more of these lines:
BlogLinks("NAME","URL");
Enjoy
