Pagina 1 din 1

Adaugare imagine la Posturi Recente

Scris: 02-Dec-2010, 22:55:40
de Sufletel
Imagine

Re: Adaugare imagine la Posturi Recente

Scris: 02-Dec-2010, 23:04:19
de bogdan
Incearca sa explici prin cuvinte si doar in plus sa pui capturi pentru ca imaginile nu se pot indexa pentru cautare.

Ce MOD ai instalat pentru Mesaje recente?

Re: Adaugare imagine la Posturi Recente

Scris: 02-Dec-2010, 23:10:27
de Sufletel
Modul se numeste top five!
Si imi cer scuze ca am postat doar imagine!

Re: Adaugare imagine la Posturi Recente

Scris: 02-Dec-2010, 23:17:47
de bogdan
Adauga imaginea in fisierul \styles\stilul_tau\template\top_five_body.html. E un HTML simplu

Re: Adaugare imagine la Posturi Recente

Scris: 02-Dec-2010, 23:36:07
de Sufletel

Cod: Selectaţi tot

<table class="tablebg" width="100%" cellspacing="1">
		<tr>
			<td class="cat" width="40%"><h4>{L_NEWEST_TOPICS}</h4></td>
			<td class="cat" width="20%"><h4>{L_TOP_FIVE_ACTIVE}</h4></td>
			<td class="cat" width="40%"><h4>{L_TOP_FIVE_NEWEST}</h4></td>
		</tr>
		<tr>
			<td class="row1" valign="top"><!-- BEGIN top_five_topic --><span class="genmed"><a href="{top_five_topic.U_TOPIC}">{top_five_topic.TOPIC_TITLE}</a>&nbsp;{top_five_topic.USERNAME_FULL}</span><br /><!-- END top_five_topic --></td>
			<td class="row1" valign="top"><!-- BEGIN top_five_active --><span class="genmed">{top_five_active.USERNAME_FULL} {L_POSTS}: <a href="{top_five_active.S_SEARCH_ACTION}">{top_five_active.POSTS}</a></span><br /><!-- END top_five_active --></td>
			<td class="row1" valign="top"><!-- BEGIN top_five_newest --><span class="genmed">{top_five_newest.USERNAME_FULL} {L_JOINED}: {top_five_newest.REG_DATE}</span><br /><!-- END top_five_newest --></td>
		</tr>
</table>
Deci am asa..si vreau sa adaug o imagine..care cod HTML trebe sal folosesc?
Vreau sa pun imaginea asta: Imagine

Re: Adaugare imagine la Posturi Recente

Scris: 03-Dec-2010, 00:03:07
de clubptc
Intra in top_five.html si schimba acel cod cu asta:

Cod: Selectaţi tot

<br clear="all" /> 
	<div class="cap-div"><div class="cap-left"><div class="cap-right">Top 5</div></div></div>
<table class="tablebg" width="100%" cellspacing="1"> 
		<tr> 
                        <td class="cat" width="4%"></td> 
			<td class="cat" width="38%"><h4>{L_NEWEST_TOPICS}</h4></td> 
			<td class="cat" width="20%"><h4>{L_TOP_FIVE_ACTIVE}</h4></td> 
			<td class="cat" width="38%"><h4>{L_TOP_FIVE_NEWEST}</h4></td> 
		</tr> 
		<tr> 
                        <td class="row1" rowspan="2" align="center" valign="middle"><img src="http://img401.imageshack.us/img401/2357/statistics.png" alt="" /></td>
			<td class="row1" valign="top"><!-- BEGIN top_five_topic --><span class="genmed"><a href="{top_five_topic.U_TOPIC}">{top_five_topic.TOPIC_TITLE}</a>&nbsp;{top_five_topic.USERNAME_FULL}</span><br /><!-- END top_five_topic --></td> 
			<td class="row1" valign="top"><!-- BEGIN top_five_active --><span class="genmed">{top_five_active.USERNAME_FULL} {L_POSTS}: <a href="{top_five_active.S_SEARCH_ACTION}">{top_five_active.POSTS}</a></span><br /><!-- END top_five_active --></td> 
			<td class="row1" valign="top"><!-- BEGIN top_five_newest --><span class="genmed">{top_five_newest.USERNAME_FULL} {L_JOINED}: {top_five_newest.REG_DATE}</span><br /><!-- END top_five_newest --></td> 
		</tr> 
</table> 
Sau cu asta:

Cod: Selectaţi tot

<br clear="all" /> 
	<div class="cap-div"><div class="cap-left"><div class="cap-right">Top 5</div></div></div>
<table class="tablebg" width="100%" cellspacing="1"> 
		<tr> 
                        <td class="row1" width="4%" rowspan=2"><img src="http://img401.imageshack.us/img401/2357/statistics.png" alt="" /></td>        
			<td class="cat" width="38%"><h4>{L_NEWEST_TOPICS}</h4></td> 
			<td class="cat" width="20%"><h4>{L_TOP_FIVE_ACTIVE}</h4></td> 
			<td class="cat" width="38%"><h4>{L_TOP_FIVE_NEWEST}</h4></td> 
		</tr> 
		<tr>               
			<td class="row1" valign="top"><!-- BEGIN top_five_topic --><span class="genmed"><a href="{top_five_topic.U_TOPIC}">{top_five_topic.TOPIC_TITLE}</a>&nbsp;{top_five_topic.USERNAME_FULL}</span><br /><!-- END top_five_topic --></td> 
			<td class="row1" valign="top"><!-- BEGIN top_five_active --><span class="genmed">{top_five_active.USERNAME_FULL} {L_POSTS}: <a href="{top_five_active.S_SEARCH_ACTION}">{top_five_active.POSTS}</a></span><br /><!-- END top_five_active --></td> 
			<td class="row1" valign="top"><!-- BEGIN top_five_newest --><span class="genmed">{top_five_newest.USERNAME_FULL} {L_JOINED}: {top_five_newest.REG_DATE}</span><br /><!-- END top_five_newest --></td> 
		</tr> 
</table> 
Vezi care iti place mai mult. :)

Re: Adaugare imagine la Posturi Recente

Scris: 03-Dec-2010, 13:45:23
de Sufletel
Multumesc! :)