Hi,
I had some spare time and I opened the snitz CSS file and fixed some stuff.
[Bugfix1]
.spnMessageText /* Don't [CENSORED]ing know */
Change it to:
.spnMessageText { font-size:11pt } /* First message SPAN*/
I changed it to 11pt and the first message's font shows the same as all the other posts.
[Bugfix2]
-> In the ASP code prolly.
Use <font size="-1">TEXT</font> instead of <small>TEXT</small>. the small tag isn't supported by every browser while the font tag is. Ofcourse they both produce the same output.
[Bugfix3]
-> In the ASP code.
In the code that generates the first post:
Find <span class="spnMessageText">HERE's THE USER's SIGNATURE</span> and remove the span tags.
Find the <font color="" face="" size="">HERE's THE USER's SIGNATURE</font> and replace the first tag with <font size="-1"> (Or <small>).
This fixes the huge signature output.
[Bugfix4]
-> In the ASP code.
In the code that generates the first post:
Find <font face="" size="" color="">Edited by - DePhille on 14 Mar 2006 14:37:18</font> and replace it with <font size="1">Edited by - DePhille on 14 Mar 2006 14:37:18</font>
This fixes the huge "EDITED BY" text under the first post.
There is a bug in the ASP code that generates the first post where it doesn't fill in <font color="" size="" face=""> and some other properties of other tags. Someone made a mistake by replacing the admin system with the CSS file probably.
Grtz , DePhille
I had some spare time and I opened the snitz CSS file and fixed some stuff.
[Bugfix1]
.spnMessageText /* Don't [CENSORED]ing know */
Change it to:
.spnMessageText { font-size:11pt } /* First message SPAN*/
I changed it to 11pt and the first message's font shows the same as all the other posts.
[Bugfix2]
-> In the ASP code prolly.
Use <font size="-1">TEXT</font> instead of <small>TEXT</small>. the small tag isn't supported by every browser while the font tag is. Ofcourse they both produce the same output.
[Bugfix3]
-> In the ASP code.
In the code that generates the first post:
Find <span class="spnMessageText">HERE's THE USER's SIGNATURE</span> and remove the span tags.
Find the <font color="" face="" size="">HERE's THE USER's SIGNATURE</font> and replace the first tag with <font size="-1"> (Or <small>).
This fixes the huge signature output.
[Bugfix4]
-> In the ASP code.
In the code that generates the first post:
Find <font face="" size="" color="">Edited by - DePhille on 14 Mar 2006 14:37:18</font> and replace it with <font size="1">Edited by - DePhille on 14 Mar 2006 14:37:18</font>
This fixes the huge "EDITED BY" text under the first post.
There is a bug in the ASP code that generates the first post where it doesn't fill in <font color="" size="" face=""> and some other properties of other tags. Someone made a mistake by replacing the admin system with the CSS file probably.
Grtz , DePhille