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
CA Evo (unlimited color schemes, vbadvanced support) Details »»
CA Evo (unlimited color schemes, vbadvanced support)
Version: 2.0.0, by CyberAlien CyberAlien is offline
Developer Last Online: Dec 2012 Show Printable Version Email this Page

Version: 3.6.7 Rating:
Released: 11-14-2006 Last Update: 05-15-2007 Installs: 359
Template Edits
Additional Files  
No support by the author.

Style name: CA Evo
Style version: 2.0.0
vBulletin version: 3.6.7

Style includes 4 base schemes:
Demo (default): fluid version, fixed version (ca_evo.zip, default color scheme demo is currently using version 2 of style, not version 1)
Demo (green): fluid version, fixed version (ca_evo_green.zip)
Demo (red): fluid version, fixed version (ca_evo_red.zip)
Demo (purple): fluid version, fixed version (ca_evo_purple.zip)

and unlimited additional color schemes:


Downloads:
CA Evo: see attachment
CA Evo Green: see attachment
CA Evo Red: see attachment
CA Evo Purple: see attachment

Additional colors:
Using ColorizeIt script you can create any color scheme.
Below are few pre-defined color schemes. If you don't like any of it, or want to replace some color, click on any color scheme and adjust quickly colors yourself. No image/html editing required - everything is done automatically. You just change colors and click "Download".


CA Evo DarkBlue: click here


CA Evo Cyan:
click here


CA Evo LightGreen:
click here


CA Evo Orange:
click here


Notes:
- Demo forum shows only postbit_legacy, but usual postbit is also included in template and screenshot is available in attachment.
- Almost every template was modified to include rounded headers, not only index. So xml files are rather large.
- Style includes two versions for every color scheme: fixed and fluid width.
- Logo psd file is in attachment.
- vBAdvanced template files are included in every style in vbadvanced.xml
- If you want some additional color scheme(s) please pm me (note: custom work is not free).

Installation:
Unpack zip file, upload contents of directory "upload" to your forum including subdirectories. Use fixed.xml or fluid.xml to install template.

vBAdvanced Installation:
Install normal style from fixed.xml or fluid.xml, in styles manager select "download/upload", put vbadvanced.xml in file field, in "merge into style" field select previously installed CA Serenity style and upload it. This will add vBAdvanced template files to style you previously installed.


Screenshots and zip files are in attachment.

Supporters / CoAuthors

Show Your Support

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

Comments
  #72  
Old 12-27-2006, 05:34 AM
needtheend needtheend is offline
 
Join Date: Feb 2006
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you cyberalien.
Reply With Quote
  #73  
Old 12-27-2006, 07:39 AM
needtheend needtheend is offline
 
Join Date: Feb 2006
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by CyberAlien View Post
Sorry for late reply.

In postbit_legacy find this:
Code:
	<td class="alt2 alt-noimage" style="border-top: 0px" valign="bottom">
		$post[onlinestatus]
and replace with this:
Code:
	<td class="alt2 alt-noimage" style="border-top: 0px" valign="bottom">
		<img src="$vboptions[cleargifurl]" width="150" height="1" border="0" alt="" />
		$post[onlinestatus]
There is the same error in firefox. But it works fine in explorer
Reply With Quote
  #74  
Old 12-29-2006, 06:18 AM
ForumOrtami ForumOrtami is offline
 
Join Date: Jun 2006
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

how is this to correct Problem?

PS : I m sorry. 1 dont speak english enough.

I Have VB 3.6.4..
Reply With Quote
  #75  
Old 12-29-2006, 07:01 AM
Quantnet Quantnet is offline
 
Join Date: Nov 2006
Location: NYC
Posts: 649
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice style indeed. I make this one the default style for my forum. My users seem to get use to the phpbb subSilver style so this one will make them feel at home.

I have a question. When i got a new PM, i have a bar under the navbar showing me that i have new PM. which template do i edit this ?

thanks
Reply With Quote
  #76  
Old 12-29-2006, 08:07 AM
Seroc Seroc is offline
 
Join Date: Jan 2006
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you very much - this is a very nice template.
Reply With Quote
  #77  
Old 12-29-2006, 08:19 AM
CyberAlien's Avatar
CyberAlien CyberAlien is offline
 
Join Date: Mar 2002
Posts: 438
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Quantnet.org View Post
Very nice style indeed. I make this one the default style for my forum. My users seem to get use to the phpbb subSilver style so this one will make them feel at home.

I have a question. When i got a new PM, i have a bar under the navbar showing me that i have new PM. which template do i edit this ?

thanks
This code in navbar template:
Code:
<!-- pm notification -->
<if condition="THIS_SCRIPT != 'private' && $show['member'] && $show['pmstats'] && $vbulletin->userinfo['pmunread']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
	<tr>
		<td class="panelsurround" align="center">
		<div class="panel">
			<div class="pm-new" style="width:$stylevar[formwidth]; text-align: center;">
				<phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl_q]">$vbphrase[private_messages_nav]</phrase>
			</div>
		</div>
		</td>
	</tr>
</tbody>
</table>
<br />
</if>
<!-- / pm notification -->
Quote:
Originally Posted by ForumOrtami View Post
how is this to correct Problem?

PS : I m sorry. 1 dont speak english enough.

I Have VB 3.6.4..
In template forumhome_forumbit_level1_nopost assign width to table cells in this code:
Code:
<tbody>
	<tr align="center">
	  <td class="thead">&nbsp;</td>
	  <td class="thead" width="100%" align="$stylevar[left]" nowrap="nowrap">$vbphrase[forum]</td>
	  <td class="thead" width="175" nowrap="nowrap">$vbphrase[last_post]</td>
	  <td class="thead" nowrap="nowrap">$vbphrase[threads]</td>
	  <td class="thead" nowrap="nowrap">$vbphrase[posts]</td>
	  <if condition="$vboptions['showmoderatorcolumn']">
	  <td class="thead" nowrap="nowrap">$vbphrase[moderator]</td>
	  </if>
	</tr>
</tbody>
Hovewer even if you assign exact width, browsers might not render table exactly as you instructed because some content might force browser to expand certain rows.
Reply With Quote
  #78  
Old 12-29-2006, 10:50 AM
ForumOrtami ForumOrtami is offline
 
Join Date: Jun 2006
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

okee no problem..thanksssss
Reply With Quote
  #79  
Old 12-29-2006, 01:18 PM
Quantnet Quantnet is offline
 
Join Date: Nov 2006
Location: NYC
Posts: 649
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks so much, CyberAlien.
I now am able to get the new PM notification mod to work with your style and it looks really nice.
I look forward to your next style release.
Reply With Quote
  #80  
Old 12-29-2006, 08:49 PM
Quantnet Quantnet is offline
 
Join Date: Nov 2006
Location: NYC
Posts: 649
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I download the buttons.psd file and tried to get just one button out of the bunch but i guess i don't know Photoshop enough to do it.
Can you show me how to extract one button out ? When i tried to disable other layer containing other buttons, i have one button i want but the size is whole frame...

Just want to replace the text on Report button to THANKS
Thanks
Reply With Quote
  #81  
Old 12-30-2006, 12:25 AM
al7bar al7bar is offline
 
Join Date: Mar 2006
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

problem with quotes . when i do a quote there is no box surronding that quote like before ..
I makes reading messages hard

example http://linerider.ca/forums/showthrea...5500#post15500
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:00 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.05212 seconds
  • Memory Usage 2,320KB
  • Queries Executed 26 (?)
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
  • (4)bbcode_code
  • (3)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
  • (1)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