Author |
Message |
twiddler
New Member


Joined: Feb 06, 2010
Posts: 16
|
Posted:
Thu Feb 18, 2010 6:48 am |
|
How do you make a box around the person's name your are quoting, like on this forum or most others, instead of what I have...image below
 |
|
|
|
 |
kguske
Site Admin

Joined: Jun 04, 2004
Posts: 6437
|
Posted:
Thu Feb 18, 2010 8:15 am |
|
twidder wrote: | You mean, like this? |
If so, use quote="username" |
_________________ I search, therefore I exist...
Only registered users can see links on this board! Get registered or login! |
|
|
 |
twiddler

|
Posted:
Thu Feb 18, 2010 1:22 pm |
|
I did, that is the default when you check "quote" for reply...doesn't show up though. |
|
|
|
 |
jakec
Site Admin

Joined: Feb 06, 2006
Posts: 3048
Location: United Kingdom
|
Posted:
Thu Feb 18, 2010 1:45 pm |
|
I think it will also depend on your theme. |
|
|
|
 |
twiddler

|
Posted:
Thu Feb 18, 2010 1:51 pm |
|
True, do you know what I should edit to change this/where I should look for this? |
|
|
|
 |
slackervaara
Worker


Joined: Aug 26, 2007
Posts: 236
|
Posted:
Fri Feb 19, 2010 12:13 am |
|
Allow BBCode must be allowed for the user or the post. Some members tends to disallow this without knowing what they doing. |
|
|
|
 |
twiddler

|
Posted:
Fri Feb 19, 2010 6:43 am |
|
slackervaara wrote: | Allow BBCode must be allowed for the user or the post. Some members tends to disallow this without knowing what they doing. |
It is. |
|
|
|
 |
spasticdonkey
RavenNuke(tm) Development Team

Joined: Dec 02, 2006
Posts: 1693
Location: Texas, USA
|
Posted:
Fri Feb 19, 2010 11:01 am |
|
the settings will be in your forum template, but it also depends on the bbcode used.
Code: [quote]some quoted text[/quote]
|
Code: [quote="Some Name"]some quoted text[/quote]
|
Some Name wrote: | some quoted text |
if you are still having issues open themes/YOUR_THEME/forums/bbcode.tpl and post back the code that appears between <!-- BEGIN quote_open --> and <!-- END quote_close -->... for example
Code:<!-- BEGIN quote_open --><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><strong>{L_QUOTE}:</strong></span></td>
</tr>
<tr>
<td class="quote"><!-- END quote_open -->
<!-- BEGIN quote_close --></td>
</tr>
</table><!-- END quote_close -->
|
|
|
|
|
 |
twiddler

|
Posted:
Fri Feb 19, 2010 2:27 pm |
|
Code:<!-- BEGIN quote_username_open --><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><strong>{USERNAME} {L_WROTE}:</strong></span></td>
</tr>
<tr>
<td class="quote"><!-- END quote_username_open -->
<!-- BEGIN quote_open --><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><strong>{L_QUOTE}:</strong></span></td>
</tr>
<tr>
<td class="quote"><!-- END quote_open -->
<!-- BEGIN quote_close --></td>
</tr>
</table><!-- END quote_close -->
|
|
|
|
|
 |
|