Quote:
Originally Posted by prolific_one
I have looked through forumhome and forumhome_latestthreadbit trying to find how I can make my cell rows only one row of text. right now the 'latest x posts' column lists the thread title/time on one line then the text preview on the next line. I'd like that all on one line. Is this a simple fix that i just don't see?
|
In the template: forumhome_latest_thread_bit
Find:
HTML Code:
<a href="$vboptions[bburl]/showthread.php?$session[sessionurl]t=$threadid" class="smallfont">$threadtitle</a>
<if condition="$vboptions['latest_thread_time']"><span class="smallfont">$date $time</span></if>
<if condition="$vboptions['latest_thread_cut'] != '0'"><div class="smallfont">$pagetext</div></if>
You can make it something like:
HTML Code:
<a href="$vboptions[bburl]/showthread.php?$session[sessionurl]t=$threadid" class="smallfont">$threadtitle</a>
<if condition="$vboptions['latest_thread_time']"><span class="smallfont">$date $time</span></if>
<if condition="$vboptions['latest_thread_cut'] != '0'"><span class="smallfont">$pagetext</span></if>