Hey Stitch626
I'd like it to look more like the subsilver2....with the last visit being under the current date.
My life had been so busy, I really did not have a chance to upgrade my mods till now and with RC7 I wasn't sure if you intended to have prosilver look like that.
I'd appreciate help with it. Prosilver templates confuse me still!

Oops Stitch626, I almost forgot.
For the subsilver2 template, when you are looking at the guest at the top it has Hello twice in the greeting.
You have this as the edit
- Code: Select all
<div id="datebar">
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td class="row1" width="100%"><span class="gensmall">
<strong>
<div style="float:right;">
<!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}</strong><!-- ELSE --></strong>{CURRENT_TIME}<!-- ENDIF -->
<!-- IF S_USER_LOGGED_IN --><br />{CURRENT_TIME}<!-- ENDIF --></span></div>
<span class="gensmall">
<!-- IF not S_USER_LOGGED_IN --><strong>{L_WELCOME_HELLO} {L_WELCOME_GUEST},</strong><!-- ENDIF -->
<!-- IF S_USER_LOGGED_IN --><strong>{L_WELCOME_WELBACK}</strong> {U_WELCOME_NAME},<!-- ENDIF --></span>
<strong>
<script type="text/javascript">
today = new Date()
if(today.getMinutes() < 10){
pad = "0"}
else
pad = "";
if((today.getHours() >=0) && (today.getHours() <=3)) document.write("{L_TIME_MIDNIGHT}");
if((today.getHours() >=4) && (today.getHours() <=6)) document.write("{L_TIME_EARLY}");
if((today.getHours() >=7) && (today.getHours() <=11)) document.write("{L_TIME_MORNING}");
if((today.getHours() >=12) && (today.getHours() <=17)) document.write("{L_TIME_AFTERNOON}");
if((today.getHours() >=18) && (today.getHours() <=24)) document.write("{L_TIME_EVENING}");
</script></strong>
<!-- IF not S_USER_LOGGED_IN --><strong>{L_WELCOME_MESSAGE}</strong><!-- ENDIF --></span>
</tr>
</table>
</div>
</div>
I took out the {L_WELCOME_HELLO} on the line that says:
- Code: Select all
<!-- IF not S_USER_LOGGED_IN --><strong>{L_WELCOME_HELLO} {L_WELCOME_GUEST},</strong><!-- ENDIF -->
And it looks much better for guests now. I don't know if you want to implement that in the xml file or not.