vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=161)
-   -   Abeer Style (https://vborg.vbsupport.ru/showthread.php?t=114182)

nitro 05-02-2006 10:17 AM

Or you should be able to tuck the closing if above the closing table tag. Its a preference thing there I think really, depends on how you want the guest message box to appear. The full way makes it less obtrusive but thats not what is allways wanted with please register message.

egtrix 05-02-2006 11:01 AM

yes nitro, nice idea. I've been even thinking of moving the please register message above the header for non registered users and then it will be invisible for registered users.. a crazy idea, i know.. but it will take away the register message from the body of the design :)

Pete C 07-06-2006 03:28 PM

Sorry I was bit slow to click the install, wasn't sure if this skin would be too light. Now that I've installed and modified it a little, it looks so good I've made it the current default theme.

This one kind of "grows" on you I think. It's a long way from some of the darker themes I've used before, but it's easy to read, easy to work with . . and most important, my members like it a lot!

A big (but slightly belated) Thank You for this one. Excellent skin :up: . . . clicks *Installed*

egtrix 07-06-2006 06:53 PM

Belder really glad that you like this skin especially it's the most one I like out of all of my designs :)

Pete C 07-07-2006 02:19 PM

It is a really nice skin, but I've run into the alignment problem and it seems (from reading what I can find here) the way to fix it may be different from theme to theme. If you have time to take a look at my site, you'll see what I mean by alignment - the Last Post section extends to different sizes.

I have the same problem on another theme that was created by Forum-Lance and the Forumhome template is coded similarly to yours.

I've tried everything I know, and a few things I don't . . . I changed the code to this:
Code:

<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
       
        <tr align="center">
          <td class="thead">&nbsp;</td>
          <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
          <td class="thead" width="175">$vbphrase[last_post]</td>
          <td class="thead">$vbphrase[threads]</td>
          <td class="thead">$vbphrase[posts]</td>
          <if condition="$vboptions['showmoderatorcolumn']">
          <td class="thead">$vbphrase[moderator]</td>
          </if>
        </tr>
</thead>
$forumbits

I even tried adding
Code:

width=#%
to the td class lines (# being the precentage of the total width for each section, and made so all sections together =100%. I got absolutely nowhere lol!

I copied the original template before I started, so nothing lost. I just cannot figure how to get the Last Post section to line up! Any help, suggestions or advice would be much appreciated.

egtrix 07-07-2006 03:23 PM

Hello Belder,
Thank you for your post :) Would you please provide me with your forum's URL as I need to see the amount of variation in width in the last post column.

Pete C 07-07-2006 04:07 PM

Thanks for the reply egtrix. The url is: http://radio-cafe.com - or you can just click on my signature line.

egtrix 07-07-2006 11:02 PM

Hey Belder, thanks for your post and sorry for the delay in posting but it took me a while to work on this issue and finally found a solution for it, here is the right code :)
Quote:

<td class="thead">&nbsp;</td>
<td class="thead" width="75%" align="$stylevar[left]">$vbphrase[forum]</td>
<td width="25%" class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
As you can see that the problem was that $vbphrase[forum] was set to 100% which was wrong, so I set it to 75% instead and then set the $vbphrase[last_post] to 25% , ofcourse you can change these variables according to your needs.

So the total code of the forumhome_forumbit_level1_nopost will be:
Quote:

<table style="border-collapse: collapse">
<tr>
<td align="left" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_top_l.gif" border="0" alt="" /></td>
<td class="cat-top"><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']"> - $forum[description]</if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
<td align="right" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_top_r.gif" alt="" /></td>
</tr>
</table>
<if condition="$childforumbits">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
<tr align="center">
<td class="thead">&nbsp;</td>
<td class="thead" width="75%" align="$stylevar[left]">$vbphrase[forum]</td>
<td width="25%" class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
$childforumbits
</tbody>
</table>
</if>
<table style="border-collapse: collapse">
<tr>
<td align="left" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_bottom_l.gif" alt="" /></td>
<td style="background-image: url($stylevar[imgdir_misc]/cat_bottom_bg.gif);width: 100%"></td>
<td align="right" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_bottom_r.gif" alt="" /></td>
</tr>
</table>
<br />
Thanks again for reporting that bug :)

egtrix 07-07-2006 11:13 PM

wait Belder, still this is not resolving the problem, sorry I will need some extra time

egtrix 07-07-2006 11:28 PM

ok finally here is the solution :)

it should be:
Quote:

<td class="thead" width="5%">&nbsp;</td>
<td class="thead" width="50%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" with="50%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
This will form cell's width in a right way, so the total code will be:
Quote:

<table style="border-collapse: collapse">
<tr>
<td align="left" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_top_l.gif" border="0" alt="" /></td>
<td class="cat-top"><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']"> - $forum[description]</if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
<td align="right" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_top_r.gif" alt="" /></td>
</tr>
</table>
<if condition="$childforumbits">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
<tr align="center">
<td class="thead" width="5%">&nbsp;</td>
<td class="thead" width="50%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" with="50%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
$childforumbits
</tbody>
</table>
</if>
<table style="border-collapse: collapse">
<tr>
<td align="left" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_bottom_l.gif" alt="" /></td>
<td style="background-image: url($stylevar[imgdir_misc]/cat_bottom_bg.gif);width: 100%"></td>
<td align="right" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_bottom_r.gif" alt="" /></td>
</tr>
</table>
<br />


All times are GMT. The time now is 02:47 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01130 seconds
  • Memory Usage 1,765KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete