PDA

View Full Version : Contents Inside Quotes


Loyalty4Life
02-08-2004, 02:45 AM
Instead of having the normal quotes with the bold and italics, I'd like to have quotes automatically do this:


Originally posted by Loyalty4Life!
This is a test quote. Do you see how the user name is in bold, and all of the font is size one? How do I modify my templates/php files to make this work?Can this be done? Thanks. [cyclops]

Loyalty4Life
02-10-2004, 09:55 PM
Faranth told me to post this here instead of vB.org, and I have not received any help... Could someone please tell me how to do this?

Thanks. :)

Zachery
02-10-2004, 09:58 PM
Just edit the bbcode_quote template if were talking about vBulletin 3

Loyalty4Life
02-10-2004, 10:22 PM
I don't know how do edit it... Would you be able to tell me what to put in? :)

Zachery
02-10-2004, 10:29 PM
Just rearrage things how you like ^^ its not too hard

Logikos
02-11-2004, 01:00 AM
I don't know how do edit it... Would you be able to tell me what to put in? :)

Log into your Admin CP. On left click "Style Manager" Then with the style your editing click the expand templates. This button has a mouse over affect telling you what that button does

Once templates are expaned. Double click on BB Code Layout Templates. Then double click on "bbcode_quote". Once opened delete everything in that template and place this in there.



<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px">$vbphrase[quote]:</div>
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<if condition="$show['username']">
<div><phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase></div>
<div class="smallfont"">$message</div>
<else />
$message
</if>
</td>
</tr>
</table>
</div>




That should do it :)