[3.7.x] Chestnut Blue Rip by Morpheus

Morpheus

New Member
chestnutbluelogoxg6.gif

Code:
*******************************************************************************
                                 Chestnut Blue
*******************************************************************************

-------------------------------------------------------------------------------
                              General Information
-------------------------------------------------------------------------------
Type.................: vBulletin Skin
Platform.............: vBulletin
Demo.................: http://www.vbskinconcept.com/forum/index.php
More Info............: Visit http://www.vbteam.info



-------------------------------------------------------------------------------
                                 Install Notes
-------------------------------------------------------------------------------
 Learn how to install a vB skin :)
-------------------------------------------------------------------------------
                                 Release Notes
-------------------------------------------------------------------------------
             ___  ___                     _                       
             |  \/  |                    | |                      
             | .  . |  ___   _ __  _ __  | |__    ___  _   _  ___ 
             | |\/| | / _ \ | '__|| '_ \ | '_ \  / _ \| | | |/ __|
             | |  | || (_) || |   | |_) || | | ||  __/| |_| |\__ \
             \_|  |_/ \___/ |_|   | .__/ |_| |_| \___| \__,_||___/
                                  | |                             
                                  |_|                             
            _____                _  _  _           ______  _        
           |  _  |              | |(_)| |          | ___ \(_)       
           | | | | _   _   __ _ | | _ | |_  _   _  | |_/ / _  _ __  
           | | | || | | | / _` || || || __|| | | | |    / | || '_ \ 
           \ \/' /| |_| || (_| || || || |_ | |_| | | |\ \ | || |_) |
            \_/\_\ \__,_| \__,_||_||_| \__| \__, | \_| \_||_|| .__/ 
                                             __/ |           | |    
                                            |___/            |_|    




-------------------------------------------------------------------------------
Thanks to all vBteam Members (including leechers)
-------------------------------------------------------------------------------
With the Chestnut_Blue Style ?
  • French and English buttons
  • Valid 100% XHTML
  • Valid 100% CSS
  • Horizontal/Vertical Postbit
  • Fixed width
  • Photoshop files
  • 100% compatible vBadvanced 3.0 RC1

Note: I did not touch the postbit and postbit_legacy templates. You can edit them as you like. Also i fixed a little bug on the original skin to make the skin fit to the page (main table width)
 

Morpheus

New Member
The shadow effect and category separation will be added on the next update.
L'effet d'ombre et la séparation des catégories seront ajoutés dans une mise à jour prochaine.

Please report any bug or missing feature.
 

ASIAN INVASION

New Member
Morpheus said:
The shadow effect and category separation will be added on the next update.
L'effet d'ombre et la séparation des catégories seront ajoutés dans une mise à jour prochaine.

Please report any bug or missing feature.

La mise à jour sera disponible quand? Je n'ai pas le gout de voler le theme moi même. Merci beacoup.
 

musicazx

New Member
Can some one teach me how to add new Buttoms on Navbar ?
exmple i want to add buttom Home (that is design same as another (home.gif,home_over.gif) ) that buttom link to another website ?.i want to replace FAQ buttom with UserCp and replace UserCP with HomePage buttom
.Help me plz
 

GponBlue

New Member
Morpheus said:
The shadow effect and category separation will be added on the next update.
L'effet d'ombre et la séparation des catégories seront ajoutés dans une mise à jour prochaine.

Please report any bug or missing feature.

Are this two things ready?
 

Blagger

New Member
musicazx said:
Can some one teach me how to add new Buttoms on Navbar ?
exmple i want to add buttom Home (that is design same as another (home.gif,home_over.gif) ) that buttom link to another website ?.i want to replace FAQ buttom with UserCp and replace UserCP with HomePage buttom
.Help me plz

Goto AdminCP>Styles & Templates>Navigation Breadcrumb Templates>Navbar

Search for FAQ:

You should find this.. (FAQ)

PHP:
<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>

Replace it with this.. (USERCP)

PHP:
<if condition="$show['member']">
			<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
		</if>



Now search for the above piece of script ^ Dont forget you will now have two so make sure you delete the correct one. !!

(USERCP)

PHP:
<if condition="$show['member']">
			<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
		</if>

And replace it with something like this.. (HOME)

PHP:
<td class="vbmenu_control"><a href="http://YOURFORUMNAME/index.php>Home</a></td>

Replace YOURFORUMNAME with your own :D
 
Top