What's new

Very nice topic type icons

Status
Not open for further replies.

Peak Forum Bot

Part Of The Furniture
PF Member
Special
Messages
4,381
Highlights
0
Reaction score
28
Points
0
Peak Coin
0.000000¢
DB Transfer
0.000000¢
Hi.

Can someone tell me what i must do to get such very nice topic type icons i this specific place ?



It' is brilliant idea :wow:
 
You mean how to put the icon description there like that?
It really depends on the style you are using... Which one do you use?
 
Oh, sorry... I was busy with updating the forum here...

So, open "viewforum_body.html" and find:
Code:
<!-- IF S_DISPLAY_POST_INFO -->
	<h3>{L_FORUM_PERMISSIONS}</h3>
	<p><!-- BEGIN rules -->{rules.RULE}<br /><!-- END rules --></p>
<!-- ENDIF -->
And replace that with this:
Code:
<!-- IF S_DISPLAY_POST_INFO -->
	<h3>{L_FORUM_PERMISSIONS}</h3>
<center>
<table border="0" width="100%">

<tr>

<td>        

<table border="0" width="235px">
<tr>
<td align="left" v-align="middle">

<p><!-- BEGIN rules -->{rules.RULE}<br /><!-- END rules --></p>
</td>
</tr>
</table>

</td>

<td>

<table border="0" width="620px">

<tr>
<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_unreada2.png" alt="Announcement" title="Announcement" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">Announcement <br> New Posts</td>

<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_unreads1.png" alt="Sticky" title="Sticky" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">Sticky <br> New Posts</td>

<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_unread2.png" alt="New Posts" title="New Posts" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">New Posts</td>

<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_read2.png" alt="No New Posts" title="No New Posts" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">No New Posts</td>
</tr>

<tr>
<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_reada.png" alt="Announcement" title="Announcement" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">Announcement <br> No New Posts</td>

<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_reads1.png" alt="Sticky" title="Sticky" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">Sticky <br> New Posts</td>

<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_unread_hot.png" alt="New Posts" title="New Posts" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">Hot Topic <br> New Posts</td>

<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_read3.png" alt="No New Posts" title="No New Posts" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">Hot Topic <br> No New Posts</td>
</tr>

<tr>
<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_unreada_locked.png" alt="Announcement" title="Announcement" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">Announcement <br> Locked </td>

<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_unreadsl.png" alt="Sticky" title="Sticky" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">Sticky <br> Locked </td>

<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_locked3.png" alt="Locked" title="Locked" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">Locked <br> New Posts</td>

<td colspan="2" align="right" width="10%"><img src="{T_IMAGESET_PATH}/forum_locked4.png" alt="Locked" title="Locked" style="vertical-align: middle; padding-bottom: 4px;" /></td>

<td colspan="2" align="center" width="15%">Locked <br> No New Posts</td>
</tr>


</table>
</table>
</center>
<!-- ENDIF -->
Note that you will need to change the name of the images to the ones you use.

Ask if you need more help.
 
No problems, thank you !

P.S. You should try to use {L_something} sthrings and make this as some smal phpBB3 MOD, it's really worth it :-
 
Status
Not open for further replies.
Back
Top