If you are not already in the Premium User membergroup, please post in the support topic so that you may be added. This will give you access to a new, Premium-only forum.
A new backup server has been added. You can find it in the Backup Servers topic.
Joined: Jun 2008 Gender: Male Posts: 305 Location: California Karma: 6
Arcade Code & Modifications List « Thread Started on Oct 17, 2008, 5:16am »
Title: ProBoards Arcade Creator: Charles Stover (a.k.a. GAMEchief, SegaDragon) Cross-Browser: Yes Placement: Global Footer
Code:
<script src="http://proboards.gamingmedley.com/arcade.js" type="text/javascript"> /* ProBoards Arcade (C) Charles Stover (a.k.a. GAMEchief, SegaDragon) This notice may not be removed for any reason. [url]http://www.gamingmedley.com[/url] */ </script>
Joined: Jun 2008 Gender: Male Posts: 305 Location: California Karma: 6
Change the Arcade Menu Icon « Reply #1 on Oct 17, 2008, 5:18am »
Title: Change the Arcade Menu Icon Creator: Charles Stover (a.k.a. GAMEchief, SegaDragon) Cross-Browser: Yes Placement: Directly Above the ProBoards Arcade
Code:
<script type="text/javascript"><!-- var arcadeIcon = "http://proboards.gamingmedley.com/images/arcade.gif"; //--></script>
Joined: Jun 2008 Gender: Male Posts: 1,039 Location: California Karma: 19
Re: Arcade Code & Modifications List « Reply #4 on Dec 17, 2008, 3:13am »
Title: Quick-Load the Arcade Menu Icon Creator: Charles Stover (a.k.a. GAMEchief, SegaDragon) Cross-Browser: Yes Placement: Top of Global Headers
Code:
<script type="text/javascript"><!-- var arcadeLink = document.createElement('a'), offset = ((pb_username == "Guest") ? 2 : 3); arcadeLink.setAttribute("href", "/index.cgi?action=arcade"); var m, menu = document.getElementsByTagName("font"); for (m = 0; m < menu.length; m++) { if (menu[m].innerHTML.match(/\[Home\]/)) { menu = menu[m]; break; } } var arcadeImage = document.createElement("img"), menuItems = menu.getElementsByTagName('a'); arcadeImage.setAttribute("alt", "[Arcade]"); arcadeImage.setAttribute("border", "0"); arcadeImage.setAttribute("id", "arcadeIcon"); arcadeImage.setAttribute("src", ((typeof(arcadeIcon) != "undefined") ? arcadeIcon : "http://proboards.gamingmedley.com/images/arcade.gif")); arcadeLink.appendChild(arcadeImage); menu.insertBefore(arcadeLink, menuItems[menuItems.length - offset]); menu.insertBefore(document.createTextNode(" "), menuItems[menuItems.length - offset]); //--></script>
This will load the arcade icon in the menu bar when the Global Headers load, instead of having to wait for the Global Footers to load, which should make a noticable difference in loading speeds.