Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Styles
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Chestnut Style Details »»
Chestnut Style
Version: 1.3, by Allan Allan is offline
Developer Last Online: Mar 2017 Show Printable Version Email this Page

Version: 3.6.4 Rating:
Released: 09-16-2006 Last Update: 09-12-2007 Installs: 716
 
No support by the author.

Chestnut Style !
(for vB3.6, vB3.6.1, vB3.6.2, vB3.6.3, vB3.6.4 and vB 3.6.5)


Hey all

I present my second style: "Chestnut"


INSTRUCTIONS ON INSTALLATION:

1. Extract ZIP folder.
2. Upload folder found within Upload folder into your forum images directory (eg for Chestnut, upload the chestnut folder into your vBulletin 3.6 images folder).
3. Log into your admin control panel.
4. Choose Styles -> Download/Upload Styles
5. Under Import Style XML File, click on "Browse..."
6. Find the Upload folder (from the ZIP you downloaded). Select the file the file that ends with .xml (there should be only one file).
  • Include file .xml for vB3.6, vB3.6.1, vB3.6.2,vB3.6.3 and vB3.6.4
  • Include .psd files
  • Style extensible
Screen in french, but buttons english in .zip files

Some Screens ...







If you use my style, please, click to Install



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Add Style for vB3.6.2 (10/08/06)


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


V1.1 - Bug fix: (09/18/06)


Thank to NJChins for information
  • Replace image to
  • Replace phrase: "Les sujets importants" to "Sticky Threads"
  • Replace phrase: " Les sujets du forum" to "Forum Threads"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~



V1.2 - Bug fix: (24/09/06)
  • The CSS not add after import to .xml (style)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~



Add: (26/09/06)
  • Add font GilliesGothicBold to Package (for edit the logo
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~



V1.3 - Bug fix: (26/10/06)
  • Fix bug "image verification", work now. This problem was only style 3.6.2. (template imagereg)
  • Description to modif
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  • Shadows Images modified (09/13/07)

Show Your Support

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

Comments
  #232  
Old 03-13-2007, 07:31 PM
2meplie 2meplie is offline
 
Join Date: Nov 2006
Location: Quebec city, Qc, Canada
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok guys I need help ASAP.

I added a new button for a link to the chatroom I want to add. Here is the code I added:

<!-- Chat -->
<td width="80">
<table width="80" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="background:#FFFFFF url($stylevar[imgdir_misc]/bouton_chat.gif);">
<a href="$vboptions[bburl]/" rel="nofollow"
onmouseover="JSFX.fadeIn('chat')"
onmouseout="JSFX.fadeOut('chat')"><img
src="$stylevar[imgdir_misc]/bouton_chat.gif" name="chat" width="80" height="40" border="0" class="imgFader" id="chat" alt="" /></a></td>
</tr>
</table>
</td>
<!-- /Chat -->

Now, here are the chat company's instructions. I don't understand how to do this since I am on a custom style.

Step 8.1.

Scroll (or use your browser's Find feature) to find the following code:

<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl_q]">$vbphrase[calendar]</a></td>

Just below the above code, add the following:

<!-- START NEW PARACHAT CODE -->
<td id="chat" class="vbmenu_control">
<a href="$show[nojs_link]#usercptools">$vbphrase[parachat_link]</a> <script type="text/javascript"> vbmenu_register("chat"); </script></td>
<!-- STOP NEW PARACHAT CODE -->

Step 8.2.

Scroll (or use your browser's Find feature) to find the following code:

<td class="vbmenu_option"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[advanced_search]</a></td>
</tr>
</table>
</div>
<!-- / header quick search form -->
</if>

Just below the above code, add the following:

<!-- START NEW PARACHAT CODE -->
<!-- NAVBAR POPUP MENUS -->
<if condition="$show['member']">
<!-- chat menu -->
<div class="vbmenu_popup" id="chat_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="vbmenu_control"><a href="chat.php?$session[sessionurl]">$vbphrase[parachat_embed]</a></td></tr>
<tr><td class="vbmenu_control"><a href="chat.php?$session[sessionurl]&do=popup" target="parachat" onClick="window.open('chat.php?$session[sessionurl]&do=popup', 'parachat', 'width=600,height=400,status=no,scrollbars=no,menu bar=no,resizable=yes'); return false"> $vbphrase[parachat_popup]</a></td></tr>
</table>
</div>
<!-- / chat menu -->
</if>
<!-- / NAVBAR POPUP MENUS -->
<!-- STOP NEW PARACHAT CODE -->

Then, after that, I want to be able to display the number of users chatting. I need to do that:

Double-click on navbar to edit the template. Scroll (or use your browser's Find feature) to find the following code:

<if condition="$show['pmstats']"><br /><phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl_q]">$vbphrase[private_messages_nav]</phrase></if>

Just below the above code, add the following code.

<!-- New ParaChat Code -->
<br>$vbphrase[parachat_chatting]
<!-- Begin Counter Code -->
<applet codebase="http://host7.parachat.com/pchat/applet"
archive=counter.jar code="count.ChatCounter.class" width=20 height=10>
<param name="query.Site" value="$vbphrase[parachat_siteid]">
<param name="ui.bg" value="E1E4F2">
<param name="ui.fg" value="000000">
<param name="ui.FontSize" value="12">
<param name="ui.FontName" value="Arial">
Sorry, your browser is not Java enabled, please visit
<a href="http://www.parachat.com/faq/java.html">our java support pages
</applet>
<!-- End Counter Code -->
<!-- End New Code -->

Can someone help?
Reply With Quote
  #233  
Old 03-14-2007, 07:31 AM
verrin verrin is offline
 
Join Date: Mar 2007
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice skin, and I installed it well. How do you make the buttons English? I'm still new with vbstyles
Reply With Quote
  #234  
Old 03-14-2007, 12:06 PM
ThePiston ThePiston is offline
 
Join Date: Jun 2006
Posts: 56
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by verrin View Post
Very nice skin, and I installed it well. How do you make the buttons English? I'm still new with vbstyles
you'll need photoshop... open the .psd that are found in the PSD folder that you want to edit. click on the layer with the Text and change it to whatever you want... then save them with a new name.
Reply With Quote
  #235  
Old 03-14-2007, 02:14 PM
gregfindley gregfindley is offline
 
Join Date: Nov 2006
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Allan,

Great job with the skin design
Just a quick question, how can I turn the 'animated' fade off for the old/new post icons?

If you take a look at my forum, www.ChessForums.org you should see what I mean

Thanks again!
Greg

EDIT: Ignore that, fixed it now
Reply With Quote
  #236  
Old 03-14-2007, 04:33 PM
dbirosel dbirosel is offline
 
Join Date: Feb 2007
Location: San Diego
Posts: 587
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Allan, i am using the chestnut right now. Will you come out with other colors too?? I'm willing to pay a couple bucks.
Reply With Quote
  #237  
Old 03-14-2007, 07:28 PM
hanji hanji is offline
 
Join Date: Dec 2006
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello

Been using Chestnut for a while.. damn fine style. A user just pointed out to me that there is no 'edit' button to modify posts... and I can verify that it's not showing up.

I have 'quick edit' set to yes in the admin, am I missing something? The odd thing is that the 'Site' button is where 'Edit' is normally located, could this be part of the problem?

Anyone run into this??

Thanks!
hanji
Reply With Quote
  #238  
Old 03-14-2007, 09:26 PM
albahrain albahrain is offline
 
Join Date: Oct 2004
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

there is one image messing (expires.gif) it should be on the following directory:
images/chestnut/misc/expires.gif
but it's not there, i also searched for it but i couldn't see it.

can you upload it please.
Reply With Quote
  #239  
Old 03-14-2007, 11:56 PM
dbirosel dbirosel is offline
 
Join Date: Feb 2007
Location: San Diego
Posts: 587
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by albahrain View Post
there is one image messing (expires.gif) it should be on the following directory:
images/chestnut/misc/expires.gif
but it's not there, i also searched for it but i couldn't see it.

can you upload it please.
I just used my default style's expires.gif image. Works great for me.
Reply With Quote
  #240  
Old 03-15-2007, 01:28 AM
TheFocusElf TheFocusElf is offline
 
Join Date: Mar 2005
Location: St. Catharines, Ontario
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Still waiting for ANYONE to respond to the WIDTH issue on page 16 of this thread. Please help...
Reply With Quote
  #241  
Old 03-16-2007, 08:52 PM
Draygonia Draygonia is offline
 
Join Date: Jun 2006
Posts: 185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

May I know how to add more buttons to he navbar? It gives me a JSX or whatever error saying the hoverover is not correct when the path is clearly correct. A small tutorial would be helpful! Also, if there is a way to add a second header navbar, please tell!
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 01:26 AM.


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.08886 seconds
  • Memory Usage 2,321KB
  • 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
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (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