Better Quote Box

chakru

New Member
your wish is my command lol..

This hack replace QuoteBox with New QuoteBox

Upload quotes to /images Folder.

Change bbcode_quote Template With:

Code:
<table border="0" cellpadding="0" cellspacing="0" align="center" style="margin-top: 5px; margin-bottom: 5px; <if condition="$show['iewidthfix']">width: 100%;</if>">
  <tr>
    <td>
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr>
        <td width="75" valign="bottom">
        <table border="0" cellpadding="0" cellspacing="0" width="50">
          <tr>
            <td width="28" valign="top">
            <img src="images/quotes/quot-top-left.gif" alt /></td>
            <td width="100%" style="background: url('images/quotes/quote-bg.gif') #FFFFFF; background-position: center;" valign="middle">
            <span class="smallfont">$vbphrase[quote]:</span></td>
            <td valign="top">
            <img src="images/quotes/quot-top-right.gif" alt /></td>
          </tr>
        </table>
        </td>
        <td align="left" style="background-image: url('images/quotes/quot-lr-bg.gif')" valign="bottom">
        </td>
        <if condition="$show['username']">
        <td width="0" align="left" valign="bottom">
        <table border="0" cellpadding="0" cellspacing="0" width="225">
          <tr>
            <td valign="top">
            <img src="images/quotes/quot-by-left.gif" alt /></td>
            <td width="100%" style="background-image: url('images/quotes/quote-bg.gif'); background-position: center;" valign="middle">
            <span class="smallfont"><phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase></span></td>
            <td valign="top">
            <img src="images/quotes/quot-top-right.gif" alt /></td>
          </tr>
        </table>
        </td>
        <else /></if>
        <td align="left" style="background-image: url('images/quotes/quot-lr-bg.gif')" valign="bottom">
        </td>
        <td width="0" align="left" valign="bottom">
        <table border="0" cellpadding="0" cellspacing="0" width="30">
          <tr>
            <td valign="top">
            <img src="images/quotes/quot-by-left.gif" alt /></td>
            <td width="100%" style="background-image: url('images/quotes/quote-bg.gif'); background-position: center;" valign="middle">
            <span class="smallfont"><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></span></td>
            <td valign="top">
            <img src="images/quotes/quot-top-right.gif" alt /></td>
          </tr>
        </table>
        </td>
        <td width="100%" align="right" valign="bottom">
        <table border="0" cellpadding="0" cellspacing="0" width="100%">
          <tr>
            <td width="100%">
            <table border="0" cellpadding="0" cellspacing="0" width="100%">
              <tr>
                <td style="background-image: url('images/quotes/quot-top-bg.gif')" width="100%" valign="middle">
                </td>
                <td align="left" valign="top">
                <img src="images/quotes/quot-top-right-10.gif" alt /></td>
              </tr>
            </table>
            </td>
          </tr>
        </table>
        </td>
      </tr>
    </table>
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr>
        <td width="10" style="background-image: url('images/quotes/quoting-left.gif')">
        </td>
        <td width="100%" valign="top" bgcolor="#ffffff"></td>
        <td width="10" style="background-image: url('images/quotes/quoting-right.gif')">
        </td>
      </tr>
      <tr>
        <td width="10" style="background-image: url('images/quotes/quot-left-bg.gif')">
        </td>
        <td width="100%" valign="top" style="background: url('images/quotes/quote.gif') #FFFFFF no-repeat" class="smallfont">
        <if condition="$show['username']"><i><br />$message</i>
        <else /><br />$message</if></td>
        <td width="10" style="background-image: url('images/quotes/quot-right-bg.gif')">
        </td>
      </tr>
      <tr>
        <td width="10" valign="bottom">
        <img src="images/quotes/quot-bot-left.gif" alt /></td>
        <td width="100%" style="background-image: url('images/quotes/quot-bot-bg.gif')">
        </td>
        <td width="10" valign="bottom">
        <img src="images/quotes/quot-bot-right.gif" alt /></td>
      </tr>
    </table>
    </td>
  </tr>
</table>

If you don't Like ' ' image, You Can Change it. Go to Extras/images/quotes And Choose one ,Replace name to quote.gif And Upload to /images/quotes Folder.

Many Thanx To Princeton For ' ' images

ya thank you princeton for images. :D
 

Ramses

New Member
Here, it's my bbcode_quote template

PHP:
<div class="quote">   
  <if condition="$show['username']">
  <cite class="smallfont"><phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase></cite>
  <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>
  </if>
  <blockquote class="bq" cite="$vboptions[bburl]/showthread.php?$session[sessionurl]p=$postid#post$postid" dir="ltr">
  <div>$message</div>
  </blockquote>
</div>

If you can help me
 
Top