Print Topic - Archive

E-Blah Community  /  Modification Archive  /  [Mod Done] New "Quote Box" Design
Posted by: Manuel R. Medina, November 15, 2003, 7:15am
Inspired by a well known board script ;) (not, not our beloved YaBB :P)

This mod will change the current look for the quote box for a new one (I think it looks cooler my way, but everybody has different taste).

Download it HERE, and report any bugs please :). (Justin please delete the previous attachment).

Screenshot is next:
Posted by: Manuel R. Medina, November 15, 2003, 7:16am; Reply: 1
Screenshot:
Posted by: Justin, November 15, 2003, 12:10pm; Reply: 2
Ummm ... if you don't download now, you'll probably see this mod in Final.  ;)  I like the look ... I like it a lot.  :)
Posted by: Justin, November 15, 2003, 12:36pm; Reply: 3
This mod is incomplete too, btw.  There isn't a closing </table>, and the ending quote is gone.  Also, you put the charater in the mod, you should have put &#147;.



- Justin
Posted by: danielck (Guest), November 15, 2003, 12:56pm; Reply: 4
This looks interesting! :)

I will place it at Blah Hackz!
Posted by: Justin, November 15, 2003, 1:05pm; Reply: 5
Quoted from hiryuu, posted November 15, 2003, 7:15am at here
Inspired by a well known board script ;) (not, not our beloved YaBB :P)

This mod will change the current look for the quote box for a new one (I think it looks cooler my way, but everybody has different taste).

Download it now, and report any bugs please :).

Screenshot is next:


This is how it looks ... :).


- Justin
Posted by: Manuel R. Medina, November 15, 2003, 2:00pm; Reply: 6
Quoted from admin, posted November 15, 2003, 12:36pm at here
This mod is incomplete too, btw.  There isn't a closing </table>, and the ending quote is gone.  Also, you put the charater in the mod, you should have put &#147;.

- Justin


Mh... I see the closing </table> maybe you just missed it??? (I just ... let's say I made a mess with the code, but everything is there... I checked with dreamweaver and EVERY tag was there...).

As for the character... I'm having a problem, when I uninstall it and try to install it again, Blah has converted &#147; to the little >>. So problably that's why I downloaded the wrong file... Anyways, file updated with &#147;. You can find it way up there ^

Edited: it's Blah, not YaBB, hahahahah :P
Posted by: Manuel R. Medina, November 15, 2003, 2:04pm; Reply: 7
Arg... can't attach it up there :P
anyways, here it is...
Posted by: Manuel R. Medina, November 15, 2003, 2:26pm; Reply: 8
Justin... give me the good version please, the one you have :P
thanks...
Posted by: Justin, November 15, 2003, 4:54pm; Reply: 9
This mod is not supported any longer ... just wait until the next version of E-Blah.  Or you can make a mod for Blah Hackz with this:


Code
sub Quote {
   my($qdate,$qmessage,$repaste,$qname);
   if($2) {
      $qdate = get_date($3);
      $userset{$1}->[1] = '';
      loaduser($1);
      if($userset{$1}->[1] ne '') { $qname = qq~<a href="$scripturl,v=memberpanel,a=view,u=$1">$userset{$1}->[1]</a>~; }
         else { $qname = $1; }
      $quotedfrom = qq~$rtxt[22] <b>$qname</b>, $rtxt[23] <b>$qdate</b> $rtxt[21] <b><a href="$2" title="$rtxt[25]">$rtxt[26]</a></b>~;
      $qmessage = $4;
   } else {
      $quotedfrom = "<b>$rtxt[27]</b>";
      $qmessage = $1;
   }

   $repaste = qq~
<table bgcolor="$color{'border'}" width="95%" class="border" cellpadding="0" cellspacing="1" align="center">
<tr>
  <td>
   <table cellpadding="8" cellspacing="0">
    <tr>
     <td rowspan="2" valign="top" bgcolor="$color{'win'}" class="win"><div style="font-size:50px; font-weight:bold; font-family:Times New Roman, Times, serif; position:relative; top:-10px">&#147;</div></td>
     <td bgcolor="$color{'win2'}" class="win2" valign="top" width="100%" align="center"><font size="1">$quotedfrom</font></td>
     <td rowspan="2" valign="bottom" bgcolor="$color{'win'}" class="win"><div style="font-size:50px; font-weight:bold; font-family:Times New Roman, Times, serif; position:relative; top:25px">&#148;</div></td>
    </tr><tr>
     <td bgcolor="$color{'win2'}" class="win2" valign="top" width="100%">$qmessage<br><br></td>
    </tr>
   </table>
  </td>
</tr>
</table>
~;
   return($repaste);
}



Replace origional Quote sub, with that one.
Print page generated: January 9, 2009, 3:15pm