PDA

View Full Version : about UBB?


11-18-2000, 12:13 AM
I like the feature of UBB that lets you have those files then the forums in a cascading manner is that possible in vBulletin?or a hack that fits my description?

11-18-2000, 06:29 AM
I'm not sure what you mean

11-18-2000, 10:53 AM
http://members.tripodasia.com.sg/BMW/cascading.GIF
Something like this,is it possible to import it to vb?when you go in a thread then there is a navigation tree linking back to the main forum page?

11-18-2000, 11:05 AM
This ain't hard at all. Simple HTML.

Example: showthread template

Find

<normalfont><b><a href="index.php">$bbtitle</A> &gt; <A HREF="forumdisplay.php?forumid=$forumid">$forumtitle</a> &gt; $threadtitle</b></normalfont>

Add images after <a href=........> and play with code to fit your needs. :)

11-18-2000, 11:13 AM
like going into a new forum and the forum name and stuff?

11-18-2000, 11:44 AM
Open showthread template in your control panel.

Replace

<normalfont><b><a href="index.php">$bbtitle</A> &gt; <A HREF="forumdisplay.php?forumid=$forumid">$forumtitle</a> &gt; $threadtitle</b></normalfont>

With something like

<table border="0" align="left" valign="top">
<tr>
<td>
<a href="index.php">
<img src="images/open.gif" border="0">
&nbsp;&nbsp;&nbsp;$bbtitle
</a>
<br>
<img src="images/tline.gif" border="0">
<img src="images/open.gif" border="0">
<A HREF="forumdisplay.php?forumid=$forumid">
&nbsp;&nbsp;&nbsp;$forumtitle
</a>
<br>
<img src="images/tline3.gif" border="0">
<img src="images/open.gif" border="0">
&nbsp;&nbsp;&nbsp;$threadtitle
</td>
</tr>
</table>

Edit forumdisplay template

Replace

<normalfont><b><a href="index.php">$bbtitle</A> &gt; $forumtitle</b><

With something like

<table border="0" align="left" valign="top">
<tr>
<td>
<a href="index.php">
<img src="images/open.gif" border="0">
&nbsp;&nbsp;&nbsp;$bbtitle
</a>
<br>
<img src="images/tline.gif" border="0">
<img src="images/open.gif" border="0">
&nbsp;&nbsp;&nbsp;$forumtitle
</td>
</tr>
</table>

Edit paths to point to your images. I highly recommend you to backup your current code (copy n paste to some file) in case you want it back.

11-18-2000, 01:54 PM
thanks PeF

11-18-2000, 02:41 PM
new reply and new post templates?
help me with those two please coz I am still working on my HTML lang basics.........could you teach me a few pointers?thanks PeF for your assistance

11-18-2000, 02:56 PM
in html my coding was right but in php it look different

http://members.tripodasia.com.sg/BMW/examplehtml.GIF

[Edited by Newbie on 11-18-2000 at 11:59 AM]

11-18-2000, 03:01 PM
http://members.tripodasia.com.sg/BMW/example2.GIF

Here is the problem
I delete the br tag it gets worse I tried editing even viewing source code of ubb forums to no avail......help me PeF thanks then you can do a documentation and it can come a hack?

11-19-2000, 12:33 PM
I wouldn't call this a hack. As said, it's simple HTML. :)

Could you post the URL to your pages? I'll take a look.

11-19-2000, 05:27 PM
thanks PeF I can handle it from here thanks!