############################################################## 
## MOD Title:           Today As/Yesterday As Coloration 
## MOD Author:          Nightrider < N/A > (N/A) http://4fxearth.net/phpBB2/ 
## MOD Description:     Adds color to the Today As/Yesterday As Text
## 
## MOD Version:         1.0.0
## 
## Installation Level:  Easy 
## Installation Time:   ~1 Minutes 
## 
## Files To Edit:       2 
##                      templates/subSilver/subSilver.css
##						language/lang_english/lang_main.php 
## 
## Included Files:      n/a 
## 
############################################################## 
## For security purposes, please check: http://www.phpbb.com/mods/ 
## for the latest version of this MOD. Although MODs are checked 
## before being allowed in the MODs Database there is no guarantee 
## that there are no security problems within the MOD. No support 
## will be given for MODs not found within the MODs Database which 
## can be found at http://www.phpbb.com/mods/ 
############################################################## 
## 
## Author Notes: 
## 
## If you want different colors than what I have chosen, you will
## want to change the hex values for .todayat and .yesterdayat
## in your template css file(s).  You can create different text 
## colors for each template installed on your board...
## 
############################################################## 
## 
## MOD History: 
## 
##   2005-10-20 - Version 1.0.0 
##      - Initial Release 
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 
# 
#-----[ OPEN ]------------------------------------------------ 
# 
templates/subSilver/subSilver.css

# 
#-----[ FIND ]------------------------------------------------
# The actual line will be longer 
#
@import url("formIE.css");

# 
#-----[ AFTER, ADD ]------------------------------------------------ 
# You would change the Hex value settings if you prefer different colors...
.todayat      { font-size : 10px; color : #FF6600; } 
.yesterdayat   { font-size : 10px; color : #330066; }

# 
#-----[ OPEN ]------------------------------------------------ 
# 
language/lang_english/lang_main.php

# 
#-----[ FIND ]------------------------------------------------
# 
$lang['Today_at'] = "Today at %s"; // %s is the time
$lang['Yesterday_at'] = "Yesterday at %s"; // %s is the time
# 
#-----[ REPLACE WITH ]------------------------------------------------ 
# 
$lang['Today_at'] = "<span class=todayat><b>Today</b></span> %s"; // %s is the time 
$lang['Yesterday_at'] = "<span class=yesterdayat><b>Yesterday</b></span> %s"; // %s is the time 
# 
#-----[ SAVE/CLOSE ALL FILES ]-------------------------------- 
# 
# EoM