Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
TvB Crastel Details »»
TvB Crastel
Version: 1.00, by markbolyard markbolyard is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.6.0 Rating:
Released: 08-20-2006 Last Update: 08-27-2006 Installs: 35
 
No support by the author.

This style no longer available. New styles to be released for 3.7 when available.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 08-22-2006, 11:08 PM
baerwurz baerwurz is offline
 
Join Date: Nov 2005
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice Style!

But one Question, how can I fix the Width in the last Post Box?

See Screenshot:
Reply With Quote
  #13  
Old 08-23-2006, 01:06 AM
markbolyard's Avatar
markbolyard markbolyard is offline
 
Join Date: Apr 2005
Location: Maryland
Posts: 629
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You can change the width by editing the forumhome_forumbit_level1_nopost template. You will see the following lines of code:

Code:
    <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>
You can adjust the column widths to suite your needs by adding width tags. See example below:

Code:
<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>
Adjust the percentages to fit your forums.
Reply With Quote
  #14  
Old 08-23-2006, 11:40 AM
guatdad guatdad is offline
 
Join Date: Jul 2006
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any waqy to get the logo with JUST the colored background and NOT the the wording on it? The wording IS the background on that logo as it is on the same layer.
Reply With Quote
  #15  
Old 08-23-2006, 11:51 AM
markbolyard's Avatar
markbolyard markbolyard is offline
 
Join Date: Apr 2005
Location: Maryland
Posts: 629
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I will update the file contents momentarily. Once I edit this post to say it's updated, please download the file again and there will be a layered logo. Sorry about that. Same thing happened on the other skin release. I must be saving to the wrong directory Thanks for the notice.
Reply With Quote
  #16  
Old 08-23-2006, 12:47 PM
guatdad guatdad is offline
 
Join Date: Jul 2006
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well...if you do that, then I will install it on my forums ASAP.
Reply With Quote
  #17  
Old 08-23-2006, 01:09 PM
markbolyard's Avatar
markbolyard markbolyard is offline
 
Join Date: Apr 2005
Location: Maryland
Posts: 629
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Zip file has been updated. It now contains a layered logo for your ease of change. Thanks.
Reply With Quote
  #18  
Old 08-24-2006, 12:14 AM
bonjurkes bonjurkes is offline
 
Join Date: Nov 2005
Posts: 127
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i have a problem at footer



when i fix its size problem the width of forum gets smaller
Reply With Quote
  #19  
Old 08-24-2006, 12:48 AM
markbolyard's Avatar
markbolyard markbolyard is offline
 
Join Date: Apr 2005
Location: Maryland
Posts: 629
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would have to see a live version to view the code and determine why it breaks on your forum. I don't know what the black boxes are, and I went to your forum in your profile and did not see it installed.
Reply With Quote
  #20  
Old 08-24-2006, 12:08 PM
markbolyard's Avatar
markbolyard markbolyard is offline
 
Join Date: Apr 2005
Location: Maryland
Posts: 629
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bonjurkes,

After reviewing your site, I see that the footer breaks if the following occur:

Style Selection + Language Selection + Long Forum Name exist. If this is the case, you can move a few things to clean it up.

In the footer template, find:

Code:
<br />
<div class="smallfont" align="center">
Will be the first two lines. Replace with:

Code:
<br />
<div class="smallfont" align="center">$vbphrase[all_times_are_gmt_x_time_now_is_y]<br />
$vbphrase[powered_by_vbulletin]<br />
$vboptions[copyrighttext]
Now find:

Code:
	<!-- Do not remove this copyright notice -->
	$vbphrase[powered_by_vbulletin]
	<!-- Do not remove this copyright notice -->
and remove $vbphrase[powered_by_vbulletin] from this section.

Next find:

Code:
	$vboptions[copyrighttext]
	</div>
</div></td>
and remove $vboptions[copyrighttext]

SAVE TEMPLATE

This will move the copyright text up to the time display area, thus freeing up space in the narrow footer for your selectors and long forum name.
Reply With Quote
  #21  
Old 08-24-2006, 01:36 PM
bonjurkes bonjurkes is offline
 
Join Date: Nov 2005
Posts: 127
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by markbolyard
bonjurkes,

After reviewing your site, I see that the footer breaks if the following occur:

Style Selection + Language Selection + Long Forum Name exist. If this is the case, you can move a few things to clean it up.

In the footer template, find:

Code:
<br />
<div class="smallfont" align="center">
Will be the first two lines. Replace with:

Code:
<br />
<div class="smallfont" align="center">$vbphrase[all_times_are_gmt_x_time_now_is_y]<br />
$vbphrase[powered_by_vbulletin]<br />
$vboptions[copyrighttext]
Now find:

Code:
	<!-- Do not remove this copyright notice -->
	$vbphrase[powered_by_vbulletin]
	<!-- Do not remove this copyright notice -->
and remove $vbphrase[powered_by_vbulletin] from this section.

Next find:

Code:
	$vboptions[copyrighttext]
	</div>
</div></td>
and remove $vboptions[copyrighttext]

SAVE TEMPLATE

This will move the copyright text up to the time display area, thus freeing up space in the narrow footer for your selectors and long forum name.

thanx for help, but now it is too narrow, i want it to be wide, like before i fix the footer.

do i want much thing?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:13 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.08993 seconds
  • Memory Usage 2,313KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (10)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete