############################################################## ## MOD Title: Static-Slide Menu -- Part 1 - Adds Sliding Menu to the board ## MOD Author: Ace2Ace < mrAce2Ace@yahoo.com > (N/A) http://wtapredictiongame.com ## MOD Description: This Part-1 adds a sliding menu to the message board. ## ## MOD Version: 1.0.0 ## ## Installation Level: Easy ## Installation Time: 5 Minutes ## Files To Edit: language/english/lang_main.php ## includes/page_header.php ## templates/subSilver/overall_header.tpl ## ## Included Files: ssmitems.css ############################################################## ## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the ## latest version of this MOD. Downloading this MOD from other sites could cause malicious code ## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered ## in our MOD-Database, located at: http://www.phpbb.com/mods/ ############################################################## ## Author Notes: ## ## This MOD works fine with Internet Explorer and Firefox. ## It has not been tested with other browsers. ## --------------------------------------------------------------- ## This MOD is split 2 parts: ## Part 1: slide_menu_MOD_Part1.txt will adds the new menu to the board. ## Part 2: slide_menu_MOD_Part2.txt will get rid of your old menu. ## --------------------------------------------------------------- ## ## You do not have to implement Part-2 if you prefer keeping both menus. ## ## I strongly suggest that after Part-1, you upload your files and see the new menu in action. ## Then go back and change the colors of the Sliding Menu to whatever fits your board. ## --------------------------------------------------------------- ## The color is set by the variables: ## menuBGColor, hdrBGColor, linkBGColor, linkOverBGColor, barBGColor ## ## If you are not using Subsilver or if you've modified overall_header.tpl in the past, ## be carefull with Part-2. Make sure you know where the code of your old menu start and where it ends. ## If you are not sure, ask someone before you attempt to remove it. ## ---------------------------------------------------------------- ## ## The file ssmitems.css should be uploaded to your board root directory. ## ############################################################## ## MOD History: ## 2005-28-08 - Version 1.0.2 ## - Added Language Support ## - Added statement to ignore Maxthon browser ## - remove dead link to java script ## 2005-14-01 - Version 1.0.1 ## - changed the colors to match subSilver ## - increased menu width ## ## 2005-13-01 - Version 1.0.0 ## - Initial Release ############################################################## ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD ############################################################## # #-----[ OPEN ]------------------------------------------ # language/english/lang_main.php # #-----[ FIND ]------------------------------------------ # $lang['Register'] = 'Register'; # #-----[ BEFORE, ADD ]------------------------------------------ # $lang['Slide_Navigator'] = 'NAVIGATOR'; $lang['Slide_Menu'] = 'Forum Menu'; # #-----[ OPEN ]------------------------------------------ # includes/page_header.php # #-----[ FIND ]------------------------------------------ # 'L_REGISTER' => $lang['Register'], # #-----[ BEFORE, ADD ]------------------------------------------ # 'L_SLIDE_NAVIGATOR' => $lang['Slide_Navigator'], 'L_SLIDE_MENU' => $lang['Slide_Menu'], # #-----[ OPEN ]------------------------------------------ # templates/subSilver/overall_header.tpl # #-----[ FIND ]------------------------------------------ # # #-----[ AFTER, ADD ]------------------------------------------ # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM