PDA

View Full Version : graphic at the end of a categorie


helmlein
08-07-2007, 01:16 PM
hi,

i search for an template modification. i split my categories -> so there is space between the categories. at the "start" and at the end of each categorie i want a graphic.

here you can see a example: http://www.dooster.de/forum/index.php

StrifeX
08-08-2007, 03:08 AM
That is 2 hacks combined... One is called "Separate Forum Categories", which i think was made by Paul M, and the other is called Rounded Category Strips (http://www.vbhackers.com/f78/rounded-category-strips-5520/).

helmlein
08-08-2007, 11:27 AM
thx for your answer, but i can't install the Rounded Category Strips hack cause i can't find

<if condition="$forum[forumid] == 1">
<else />
</table>


in the froumbit_level1_nopost template.

other idea?

Lilyk
08-08-2007, 06:40 PM
I would also like this modification if anyone can help.

StrifeX
08-09-2007, 12:02 PM
thx for your answer, but i can't install the Rounded Category Strips hack cause i can't find


in the froumbit_level1_nopost template.

other idea?Did you search for "froumbit_level1_nopost"? Because the person made a typo. It's actually "forumbit_level1_nopost". Try that and tell me if it works.

helmlein
08-09-2007, 01:05 PM
i search in the forumhome_forumbit_level1_nopost template. but i cannot find the code.

my idea is, that vBulletin modified this template.

Lilyk
08-09-2007, 01:08 PM
They have by the looks of it because I can neither find it :(

StrifeX
08-10-2007, 12:10 AM
Post your template here and let me take a look to see if i can put it somewhere else.

helmlein
08-10-2007, 03:30 AM
here we go :)


</table>
<br />

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">

<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
<tr align="center">
<td class="thead" width="5%">&nbsp;</td>
<td class="thead" width="45%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="30%">$vbphrase[last_post]</td>
<td class="thead" width="10%">$vbphrase[threads]</td>
<td class="thead" width="10%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tr>
</tbody>
<if condition="$childforumbits">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
$childforumbits
</tbody>
</if>

StrifeX
08-10-2007, 06:50 AM
Ok, try this:


<!-- top category table setup -->

<table width="100%" style="background-image:url($stylevar[imgdir_misc]/header_bg.gif)" border="0" cellpadding="0" cellspacing="0">

<tr>
<td align="left" valign="top"><img src="$stylevar[imgdir_misc]/header_left.gif" alt=""/></td>
<td width="100%" class="tcat" style="background-image:url($stylevar[imgdir_misc]/header_bg.gif)" valign="middle">


<div align="left"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><b>$forum[title]</b></a></div>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>


</td>
<td align="right" valign="top"><img src="$stylevar[imgdir_misc]/header_right.gif" alt=""/></td>
</tr>
</table>
<!-- End top category table setup -->
</table>
<br />

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">

<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
<tr align="center">
<td class="thead" width="5%">&nbsp;</td>
<td class="thead" width="45%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="30%">$vbphrase[last_post]</td>
<td class="thead" width="10%">$vbphrase[threads]</td>
<td class="thead" width="10%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tr>
</tbody>
<if condition="$childforumbits">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
$childforumbits
</tbody>
</if>
<!-- bottom table setup -->
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="70" align="left" valign="top"><img src="$stylevar[imgdir_misc]/footer_left.gif" alt="" height="17"/></td>
<td width="100%" style="background-image:url($stylevar[imgdir_misc]/botcenter.gif)"><img src="$stylevar[imgdir_misc]/footer_bg.gif" alt="" width="100%" height="17" border="0"/></td>
<td width="70" align="right" valign="top"><img src="$stylevar[imgdir_misc]/footer_right.gif" alt="" height="17"/></td>
</tr>
</table>
<!-- End bottom table setup -->

<br />



</if>

helmlein
08-10-2007, 06:58 AM
ok thanks a lot at first but look at the screenshot. there are some troubles. :(

Footer-graphics are perfect.

but the header graphics doesnt work right.

the header graphics should be right on the top of the categories

helmlein
08-10-2007, 07:26 AM
I GOT IT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

THANKS A LOT. Great Forum. Great Guys.

I LOVE YOU!

german euphoria

Can i publish this template in the german supporter forum?

StrifeX
08-10-2007, 08:26 AM
Lol, no problem :D But what do you mean by publishing in the German support forum? You want to put this tutorial/hack on another forum?

Edit: Oh, and sorry about adding the extra line break, my bad :p

helmlein
08-10-2007, 09:22 AM
Yes, i want to put this "hack" on another forum ;)

StrifeX
08-10-2007, 10:52 AM
Well, I didn't make the hack myself, so you should probably PM the guy on vbhackers.org and ask him for permission instead of me ;)

helmlein
08-10-2007, 03:01 PM
But his last post is from 10-14-2006 O.o

i think he isn't really active in the forum right now :)