Hi Dustin,
Please add the following JavaScript to the header tag of your page. Hope if helps.
var OnMapCreated = function(map) {
OpenLayers.Control.CustomInfo = OpenLayers.Class(OpenLayers.Control.Attribution, {
innerHtml: null,
initialize: function(innerHtml) {
this.innerHtml = innerHtml;
},
updateAttribution: function() {
if (this.map && this.innerHtml) {
// change the position here.
this.div.style.right = "10px";
this.div.style.bottom = "50px";
this.div.innerHTML = this.innerHtml;
}
}
});
var customInfo = new OpenLayers.Control.CustomInfo("<a href='#'>The is our custom information</a>");
map.addControl(customInfo);
}
Any questions please let me know.
Thanks,
Howard