 | Today at Yesterday at MOD color change.. |  |
Posted: 05/07/2007 6:02 AM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 1:20 AM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
Hi
I just installed Today at Yesterday at MOD at my live board and the color is simple black but I want the color like you have it
I tried to see in viewtopic_body.tpl and viewforum_body.tpl but could not find it. May i know how to change it  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Today at Yesterday at MOD color change.. |  |
Posted: 05/07/2007 1:52 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 5:20 PM
Location: St Pete, FL
|

|
|
|
|
 |
I created this MOD that allows you to set the colors for the Today At / Yesterday At text:
TxtColoration.zip
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Today at Yesterday at MOD color change.. |  |
Posted: 05/07/2007 2:36 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 1:20 AM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
Woww. You created this MOD
I will try to install this MOD and will let you know what happens  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Today at Yesterday at MOD color change.. |  |
Posted: 05/07/2007 3:29 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 5:20 PM
Location: St Pete, FL
|

|
|
|
|
 |
It should install fairly easily. Let me know if you have any trouble with it...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Today at Yesterday at MOD color change.. |  |
Posted: 05/07/2007 10:36 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 1:20 AM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
It installed nicely. The colors i thought will be like your's which is blue and golden type which really looks great but mine in both today and yesterday color got black
But no problem, as you mentioned to change the hex color, I will try to change it
Thanks for the MOD  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Today at Yesterday at MOD color change.. |  |
Posted: 05/07/2007 10:52 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 5:20 PM
Location: St Pete, FL
|

|
|
|
|
 |
No, the MOD is not working correctly for you since you are using subSilver and it is using the style information from the overall_header.tpl file rather than the subSilver.css file. So Restore the EM Backups and install this version of the MOD...
| Code:
|
##############################################################
## 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/overall_header.tpl
## 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/overall_header.tpl
#
#-----[ FIND ]------------------------------------------------
# The actual line will be longer
#
@import
#
#-----[ 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
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Today at Yesterday at MOD color change.. |  |
Posted: 05/07/2007 11:11 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 1:20 AM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
Oh, I see.
I restored the EM backups and installed this new one and it worked perfectly. Great MOD. Now my board is fully colorful everywhere
Looks nice  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Today at Yesterday at MOD color change.. |  |
Posted: 05/07/2007 11:28 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 5:20 PM
Location: St Pete, FL
|

|
|
|
|
 |
You can change the colors if you don't like the ones I used. I use different colors for several of our templates here in RCF...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Today at Yesterday at MOD color change.. |  |
Posted: 05/07/2007 11:41 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 1:20 AM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
The current one are best. I would like to keep the current one  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Today at Yesterday at MOD color change.. |  |
Posted: 05/07/2007 11:43 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 5:20 PM
Location: St Pete, FL
|

|
|
|
|
 |
Ok, I thought that you might want to change the color of Yesterday. If you are happy with it, I am too...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Information |  |
|