Footers:
<script>
var Guest = "GUEST";
var User = "MEMBER";
var username = $("td.titlebg2 span b").not($("td.titlebg2 span b:contains(News)")).html();
if(!username){var News = Guest;}else{var News = User;};
document.write("<span id='TopInfo' class='titlebg' style='width: 100%; position: fixed; top: 0; left: 0; '>" + News + "</span>");
function TopInfo(show){
var Top = document.getElementById("TopInfo");
if (Top != null){
if (navigator.appName == "Microsoft Internet Explorer" && navigator.userAgent.indexOf("MSIE 7") == -1){
Top.style.top = document.documentElement.scrollTop;
};
Top.style.display = show ? "block" : "none";
};};
</script>
This will create a floating news bar that will always stay uptop.
GUEST = The Text that guests will see.
MEMBER = The Text that the Members will see when they are logged in.
Enjoy
