Quote:
Originally Posted by Cooleyvol
Has anyone edited this so it doesnt take up so much height space on the forum? Maybe getting rid of the quotation graphics, etc.
|
I have. I made it so it shows strictly only the quote and quote's author (not the author submitted the quote that is).
listbit template
Code:
<tr><td class="quoterow {$quoteclass}" align="center" id="quote{$quote['quoteid']}-{$globalcounter}">
<br />
{$quote['quote']}
<br /><br />
<div class="authorcontainer">
<if condition="!empty($quote['author'])">
<div class="author" id="author{$quote['quoteid']}-{$globalcounter}">- {$quote['author']}</div>
</if>
<if condition="$quoteitoptions['enablecontext'] AND !empty($quote['context'])">
<span class="context" id="context{$quote['quoteid']}-{$globalcounter}">({$quote['context']})</span>
</if>
</div>
<br />
</td></tr>