Well i have eliminated the problem of all the smiles showing. Of course as the friendly person that I am i will share this with all of you for $55 just send it to my pay pal
Na you all can have it for free.
Ok here is what you do. Open styles/templates/chat_body.html
Find:- Code: Select all
<!-- IF S_SMILIES_ALLOWED and .smiley -->
<!-- BEGIN smiley -->
<a href="#" onclick="insert_text('{smiley.A_SMILEY_CODE}', true); return false;"><img src="{smiley.SMILEY_IMG}" width="{smiley.SMILEY_WIDTH}" height="{smiley.SMILEY_HEIGHT}" alt="{smiley.SMILEY_CODE}" title="{smiley.SMILEY_DESC}" /></a>
<!-- END smiley -->
<!-- ENDIF -->
Replace with:- Code: Select all
<!-- IF S_SMILIES_ALLOWED and .smiley -->
<a href="./posting.php?mode=smilies&f=2" onclick="popup(this.href, 300, 350, '_phpbbsmilies'); return false;"><font color="#FFFFFF">View more smilies</font></a>
<!-- ENDIF -->
Now you have 2 options, You can change the text from "View More Smileys" To do this you need to
Find: - Code: Select all
View more smilies
on the lines i just gave you. Then change it to what ever
Second option is to change the color of the font.
I have wrapped the font that says "View More Smilies" as white, To change this find the <font></font> tags which show like this on the lines above (the code that you replaced it with)
- Code: Select all
<font color="#FFFFFF">View more smilies</font>
and just change the #FFFFFF which a Hex Decimal font color, Here is a good place to get the font color
View HereWhen you click on a smilie it will also add the text to the chat box just like it does when making a post
So there it is.
Enjoy
