Artemas
Site Admin
Joined: 09 Aug 2008
Posts: 1
|
| Post subject: Termination Version: 1.0.2 for phpBB 2.0.23 |
|
Posted: 2008.11.09 08:43 am |
#################################################################
## Theme Title: Termination
## Theme Version: 1.0.2
## Theme Author: Artemas < artemas@cafepark.com >
## Theme Demo1: http://oops.cafepark.com/
## Theme Demo2: http://phpbb2.cafepark.com/
## Free Download: http://oops.cafepark.com/viewtopic.php?t=1448
##
## Installation Level: Easy
## Installation Time: 3 Minute
## Files To Optional Edit: language/English/lang_main.php, posting.php, privmsg.php
##
## Included Files: termination (folder)
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
#################################################################
##
## Edit Description: The following modification is optional.
## Purpose: Post function is increased to [*] item button for BBCODE help.
## Browser Suppor to Firefox, Safari, Opera, IE7 and IE6
##
#################################################################
The Termination template of characteristic explained:
Your can use [Styles Admin] of management changing 5 kinds of functions.
1.Change the width of the screen, can adopt limit the width of 1024 pixels or percentage.
Edit to Termination style:
Theme Element / Span Class 1: 990 or 96%
ps.Number value 990 or 96% will deduct the scroll bar and frame shade.
2.This template has color style bar output of 5 kinds to change.
ps.Two following elements must be revised at the same time.
Edit to Termination style:
cyan color style:
Theme Element / CSS Stylesheet: style_cyan.css (default)
Theme Element / Background Image: style_cyan (default)
-------------------------------------------------------------------------------
blue color style:
Theme Element / CSS Stylesheet: style_blue.css
Theme Element / Background Image: style_blue
-------------------------------------------------------------------------------
green color style:
Theme Element / CSS Stylesheet: style_green.css
Theme Element / Background Image: style_green
-------------------------------------------------------------------------------
orange color style:
Theme Element / CSS Stylesheet: style_orange.css
Theme Element / Background Image: style_orange
-------------------------------------------------------------------------------
purple color style:
Theme Element / CSS Stylesheet: style_purple.css
Theme Element / Background Image: style_purple
-------------------------------------------------------------------------------
3.You can change the <body> background color freely
Edit to Termination style:
Theme Element / Background Colour: b6b6b6 (default)
Other editors
Theme Element / Font Colour 2: 0080C0 (default)
This color means show to Moderator of the [Who is online]
Theme Element / Font Colour 3: 8F7525 (default)
This color means show to Administrator of the [Who is online]
Notation: Except above-mentioned [Theme Element] can only editted, others are pointless.
4.The extra Java Script and posting tool.
*.Include the Color Font Bar MOD.
*.Support the "PNG" alpha transparency display to IE 6.0.
*.Add the [*] item bbcode button, if you need the button can show on [helpbox].
please fix according to the following code.
| Code: | #
#-----[ OPEN ]------------------------------------------
#
language/lang_english/ lang_main.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Emoticons'] = 'Emoticons';
#
#-----[ BEFORE, ADD ]------------------------------------------
#
$lang['bbcode_item_help'] = '# item: [*] text, none end code';
#
#-----[ OPEN ]------------------------------------------
#
posting.php
#
#-----[ FIND ]------------------------------------------
#
'L_EMPTY_MESSAGE' => $lang['Empty_message'],
#
#-----[ AFTER, ADD ]------------------------------------------
#
'L_BBCODE_ITEM_HELP' => $lang['bbcode_item_help'],
#
#-----[ OPEN ]------------------------------------------
#
privmsg.php
#
#-----[ FIND ]------------------------------------------
#
'L_EMPTY_MESSAGE' => $lang['Empty_message'],
#
#-----[ AFTER, ADD ]------------------------------------------
#
'L_BBCODE_ITEM_HELP' => $lang['bbcode_item_help'],
#
#-----[ SAVE ]------------------------------------------
# |
5.The background of main menu in [Memberlist],[Usergroups],[Search],[FAQ],[Register], has specially effect to faded in and fade out.
Notation: If you want increase other link of MOD newly in to the future.
please fix according to the following code.
| Code: | #-----[ OPEN ]------------------------------------------
overall_header.tpl
#-----[ FIND and COPY ]------------------------------------------
<td class="width" onmouseover="this.className='on'" onmouseout="this.className='off4'"><a href="{U_FAQ}" class="mainmenu">{L_FAQ}</a></td>
<td><img src="templates/termination/images/{T_BODY_BACKGROUND}/menu_m.png"></td>
#-----[ POST to Following ]------------------------------------------
# modify off4 to off6 and your MOD code link
<td class="width" onmouseover="this.className='on'" onmouseout="this.className='off6'"><a href="{your MOD}" class="mainmenu">{your MOD}</a></td>
<td><img src="templates/termination/images/{T_BODY_BACKGROUND}/menu_m.png"></td>
#-----[ OPEN ]------------------------------------------
#each style color css files
style_cyan.css
style_blue.css
style_green.css
style_orange.css
style_purple.css
#-----[ FIND and COPY ]------------------------------------------
td.off4 {background-image:url(images/style_***color***/menu_off4.gif); padding-left:17px; padding-right:17px;}
#-----[ POST to Following ]------------------------------------------
# modify off4 to off6
td.off6 {background-image:url(images/style_***color***/menu_off6.gif); padding-left:17px; padding-right:17px;}
#-----[ OPEN and FIND and COPY ]------------------------------------------
#each style color folders
templates\termination\images\style_***color folder***\menu_off4.gif
#-----[ POST and Alter Name ]------------------------------------------
menu_off6.gif
#-----[ FINISH ]------------------------------------------
So as to analogize of future.
|
|
|
|
|