[REQ] Quote thing

XBOXsteve

New Member
I seen this on a forum and liked the look of it.
Whats the mod name and can anyone link me to a thread that has the link to download?

25at3yu.jpg


Thanks.
 
I think this is custom made quote hack. If you know some coding you can do it by ur self by editing bbcode_quote template.
 
Add this code to ur bbcode_quote teplate:

Code:
<div style="margin:20px; margin-top:5px; <if condition="$show['iewidthfix']">width: 100%;</if>">
	
	<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2" style="border:1px inset">

			<if condition="$show['username']">
				<div style="border-bottom:1px dashed black; padding:2px;" width="100%">
					<phrase 1="$username">$vbphrase[quote]:&nbsp;$vbphrase[originally_posted_by_x]</phrase>
					<if condition="$postid"><a href="showthread.php?$session[sessionurl]p=$postid#post$postid" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/viewpost.gif" border="0" alt="$vbphrase[view_post]" /></a></if>
				</div>
				<div>$message</div>
			<else />
				$message
			</if>
		</td>
	</tr>
	</table>
</div>
 
It's the Custom Template editing for 3.7.x I saw it once, but cant find it anymore. It's an emulation for the IPB quotes.
 
The above code that i have posted gives something simular like on the image,maybe you just need to change font color and size. It have nothing to do with IPB,i just edeited default bbcode_quote template.
 
Back
Top