vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Community Reviews (https://vborg.vbsupport.ru/forumdisplay.php?f=14)
-   -   Toonville (https://vborg.vbsupport.ru/showthread.php?t=117677)

cartooner 06-05-2006 06:07 AM

Toonville
 
We Just did a Patriotic skin for the forum....

http://www.edtoonsboard.com/

peterska2 06-05-2006 07:40 AM

Thast is one very busy and distracting background that you have there.

I'd also be tempted to tone the red white and blue used down a bit, it is very harsh on the eyes.

Using blue for your background for quotes is not really the best color as it is very difficult to read the text being quoted.

You have a bit of a problem with line breaks in the navbar breadcrumb bits (the bits the show where you are eg
vBulletin.org Forum > Community Forums > Forum Commenting
- Toonville)
and in the forums part of the moderators section on Forum Leaders.

Definately original though. It's not something that I have come across before.

cartooner 06-06-2006 01:35 AM

Quote:

Originally Posted by peterska2
Thast is one very busy and distracting background that you have there.

I'd also be tempted to tone the red white and blue used down a bit, it is very harsh on the eyes.

Using blue for your background for quotes is not really the best color as it is very difficult to read the text being quoted.

You have a bit of a problem with line breaks in the navbar breadcrumb bits (the bits the show where you are eg
vBulletin.org Forum > Community Forums > Forum Commenting
- Toonville)
and in the forums part of the moderators section on Forum Leaders.

Definately original though. It's not something that I have come across before.

Ok...I know that background isn't doing the job. Where can a person find backgrounds??

I asked about correcting that line break, but never got any help. It's been like that since I centered the Titles in Catergory Strips. Yep it does need a toning down... TY so much. If you know where to get backgrounds I'd sure appreciate the links...

peterska2 06-06-2006 01:55 AM

Ah, now I prefer that background :D

How have you centered your categories? It's probably that code that is causing the line breaks.

cartooner 06-06-2006 02:17 AM

Quote:

Originally Posted by peterska2
Ah, now I prefer that background :D

How have you centered your categories? It's probably that code that is causing the line breaks.


I think this looks a bit better. www.edtoonsboard.com

Yes I did along time ago. using for example this code in the title for Category <center>Fun and Humor</center> for the Fun and Humor Category.

Thats how VBulletin told me to center a Category. But then when I did that it did as you described and I still have not found a way to correct that.

Thank You.

peterska2 06-06-2006 02:18 AM

ok, let me grab my style manager and we can get this fixed for you.

peterska2 06-06-2006 02:21 AM

In your forumhome_forumbit_level1_nopost

FIND

Code:

<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
                        <if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>

Replace with

Code:

<span style="align: center"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
                        <if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if></span>

Remove the <center></center> from the category titles.

cartooner 06-06-2006 10:20 PM

Quote:

Originally Posted by peterska2
In your forumhome_forumbit_level1_nopost

FIND

Code:

<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
                        <if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>

Replace with

Code:

<span style="align: center"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
                        <if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if></span>

Remove the <center></center> from the category titles.



This is my forumhome_forumbit_level1_nopost template with your code..

and Category titles are off to left again..

HTML Code:

</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>
                <span style="align: center"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
                      <if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if></span>       
                <if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
                </td>
        </tr>
<tr align="center">
          <td class="thead" width="5%">&nbsp;</td>
          <td class="thead" width="65%" align="$stylevar[left]">$vbphrase[forum]</td>
          <td class="thead" width="20%">$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" width="0%">$vbphrase[moderator]</td>
          </if>
        </tr>
</tbody>
<if condition="$childforumbits">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
$childforumbits
</tbody>
</if>


peterska2 06-07-2006 08:34 AM

try replacing the entire template with

Code:

</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>" align="center">
<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>
<tr align="center">
<td class="thead" width="5%">&nbsp;</td>
<td class="thead" width="65%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="20%">$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" width="0%">$vbphrase[moderator]</td>
</if>
</tr>
</tbody>
<if condition="$childforumbits">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
$childforumbits
</tbody>
</if>


cartooner 06-07-2006 05:35 PM

Quote:

Originally Posted by peterska2
try replacing the entire template with

Code:

</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>" align="center">
<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>
<tr align="center">
<td class="thead" width="5%">&nbsp;</td>
<td class="thead" width="65%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="20%">$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" width="0%">$vbphrase[moderator]</td>
</if>
</tr>
</tbody>
<if condition="$childforumbits">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
$childforumbits
</tbody>
</if>


That fixed it, and it looks much better. Thank you for all your help.


All times are GMT. The time now is 02:22 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.01161 seconds
  • Memory Usage 1,771KB
  • 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
  • (6)bbcode_code_printable
  • (1)bbcode_html_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)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