PDA

View Full Version : QR Question(s) - Please help - TIA!


Christie189
10-04-2006, 03:10 PM
I want to add the left, center, right justification selections and I also want to add the font size to the QR if at all possible. Any idea how I would do this?

Please help! :cool: TIA!

SCRIPT3R
10-04-2006, 03:18 PM
Enable Clickable Message Formatting Controls for QR in your AdminCP.

AdminCP >> vB Options >> Message Posting Interface Options.

Christie189
10-04-2006, 03:45 PM
That is done and this is what my QR looks like:

https://vborg.vbsupport.ru/external/2006/10/16.jpg

SCRIPT3R
10-04-2006, 04:10 PM
weird, i always thought justifications would show up with that option enabled. kinda weird that it wouldn't. probably a quick template mod would do the trick. i'll look into it.

i can't figure it out so asked for which code controls those options over at vB.com.

update...

they didn't have an answer for me at .com, but here's the code for the various justification options if somebody wants to figure out how to get them into the QR.

<if condition="$show['align_bbcode']">
<if condition="$stylevar['textdirection'] == 'ltr'">
<td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
<else />
<td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
</if>