vBulletin 4 styles: Blue Pro skin

May 9th, 2010 Script Posted in VBB themes No Comments » 745 views

Professional, corporate, light, awesome: Say hello to Cielo. A very customized light skin which is chameleon – you can put any background in it and it will always look good. Speaking of backgrounds, it ships with 5 nice alternative backgrounds. Some of the features include forum blocks, a Facebook-like fixed bottom bar, custom forum icons and custom messages for both guests, members, and members who have less than one post.

Key features:

  • This skin is fluid
  • Comes with a custom team icon
  • Comes with 5 alternative backgrounds
  • Needed PSDs included (header, buttons)
  • Compatible with Blog
  • Compatible with CMS
  • Facebook-like fixed bottom bar
  • Guest welcome message
  • Share This Thread

Download now

AddThis Social Bookmark Button

vBulletin 4 styles: Ambient Lighting v4 Blue

May 9th, 2010 Script Posted in VBB themes 5 Comments » 4,807 views

Professional, corporate, light, awesome: Say hello to Cielo. A very customized light skin which is chameleon – you can put any background in it and it will always look good. Speaking of backgrounds, it ships with 5 nice alternative backgrounds. Some of the features include forum blocks, a Facebook-like fixed bottom bar, custom forum icons and custom messages for both guests, members, and members who have less than one post.

Key features:

  • This skin is fluid
  • Comes with a custom team icon
  • Comes with 5 alternative backgrounds
  • Needed PSDs included (header, buttons)
  • Compatible with Blog
  • Compatible with CMS
  • Facebook-like fixed bottom bar
  • Guest welcome message
  • Share This Thread

Download now

AddThis Social Bookmark Button

vBulletin 4 styles: Cielo skin

May 9th, 2010 Script Posted in VBB themes No Comments » 546 views

Professional, corporate, light, awesome: Say hello to Cielo. A very customized light skin which is chameleon – you can put any background in it and it will always look good. Speaking of backgrounds, it ships with 5 nice alternative backgrounds. Some of the features include forum blocks, a Facebook-like fixed bottom bar, custom forum icons and custom messages for both guests, members, and members who have less than one post.

Key features:

  • This skin is fluid
  • Comes with a custom team icon
  • Comes with 5 alternative backgrounds
  • Needed PSDs included (header, buttons)
  • Compatible with Blog
  • Compatible with CMS
  • Facebook-like fixed bottom bar
  • Guest welcome message
  • Share This Thread

Download now

AddThis Social Bookmark Button

vBulletin 4 styles: Warrior themes

May 9th, 2010 Script Posted in VBB themes 2 Comments » 862 views

The ultimate gaming experience. Warrior was made with gaming in mind: it has everything a gaming community needs. It is also very modern with lots of gradients and transparency/glossy effects. Comes with 17 backgrounds on popular games: World of Warcraft, Diablo, Halo, Avatar, Starcraft, Resident Evil, Assasin’s Creed, God of War, Socom and Batman. You can also make your own background and easily integrate it: everything is done so your community can be unique! Also comes with a nice always-on-top expandable navigation bar.

Key features:

  • This skin is fixed
  • Comes with a custom team icon
  • Comes with 17 gaming backgrounds
  • Compatible with Blog
  • Compatible with CMS
  • Share This Thread

Download now

AddThis Social Bookmark Button

Underground VBB 4.x forum template

May 9th, 2010 Script Posted in VBB themes No Comments » 287 views

A very much customized dark skin with nice grunge effects and gradients. Perfect for gaming, grungy forums. Or any forum niche really.

Key features:

  • This skin is fluid
  • Comes with a custom team icon
  • Comes with 10 alternative guest images
  • Compatible with Blog
  • Compatible with CMS
  • Share This Thread

Download now

AddThis Social Bookmark Button

Blood VBB 4.x forum template

May 9th, 2010 Script Posted in VBB themes No Comments » 225 views

You can put any background of any genre in this dark skin and it’ll still look wonderful. The skin comes with 8 alternative backgrounds. One general background and 7 gaming ones: Call of Duty, Diablo, Final Fantasy, God of War, Socom, Starcraft and Worlf of Warcraft. Also comes with 3 color variations: red (default), blue and green.

Key features:

  • This skin is fluid
  • Comes with a custom team icon
  • Needed PSDs included (header, buttons)
  • Compatible with Blog
  • Compatible with CMS
  • Comes with 8 alternative backgrounds
  • 3 color variations
  • Fixed top header for easy navigation
  • Share This Thread

Download now

AddThis Social Bookmark Button

How to create Fieldset around Profile in VBB theme ?

March 1st, 2009 Script Posted in Ebooks - Tips, How to, VBB themes No Comments » 99 views

To create a line box around profile and rep power in showthreads page like image here, you need to follow the instruction.

AdminCp -> vBulletin Options -> Style & Language Settings -> Use Legacy (Vertical) Postbit Template -> [set to] NO -> Click Save

Next, you will need to edit one template

AdminCp -> Styles & Templates -> Style Manager -> Edit Template -> «Expand All Template Groups» -> postbit.

Profile Fieldset:

Find code:

<td valign=”top” nowrap=”nowrap”>

<div class=”smallfont”>
<if condition=”$post['joindate']“><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition=”$post['field2']“><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition=”$post['age']“><div>$vbphrase[age]: $post[age]</div></if>
<div>
$vbphrase[posts]: $post[posts]
</div>

Change this code:

<td valign=”top” nowrap=”nowrap” width=”175″>

Add Fieldset code as seen here:

<td valign=”top” nowrap=”nowrap” width=”175″>
<fieldset><legend><b>Profile:</b></legend>
<div class=”smallfont”>
<if condition=”$post['joindate']“><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition=”$post['field2']“><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition=”$post['age']“><div>$vbphrase[age]: $post[age]</div></if>
<div>
$vbphrase[posts]: $post[posts]
</div>
</fieldset>

Next find & copy by highlighting the test and using Ctrl+C to copy:

<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]</div>

Do not delete this use <!– comment out –>

<!– <div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]</div> –>

Another option is to use <span> tags

<span style=”display:none”>[color=blue]<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]</div></span>

Place this in where you just added Fieldset Add Icon Code to before Close Tag Fieldset:

<td valign=”top” nowrap=”nowrap” width=”175″>
<fieldset><legend><b>Profile:</b></legend>
<div class=”smallfont”>
<if condition=”$post['joindate']“><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition=”$post['field2']“><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition=”$post['age']“><div>$vbphrase[age]: $post[age]</div></if>
<div>
$vbphrase[posts]: $post[posts]
</div>
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]</div>
</fieldset>

Rep Power Fieldset:

Find code:

<if condition=”$show['reputation']“><if condition=”$show['reppower']“>$vbphrase[reppower]: $post[reppower] </if><div>$post[reputationdisplay]</div></if>

Add the Following Code in Green:

<td valign=”top” nowrap=”nowrap” width=”175″>
<fieldset><legend><b>Reputation:</b></legend>
<div class=”smallfont”>
<if condition=”$show['reputation']“><if condition=”$show['reppower']“>$vbphrase[reppower]: $post[reppower] </if><div>$post[reputationdisplay]</div></if>
</fieldset>
</div>
</td>
<!– <div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]</div> –>
</div>

</td>
</tr>
</table>
<!– / user info –>

Change Reputation between <legend></legend> tiltle to any word example: Karma
Save in Template History? : YES
Comment : fieldset_profile_reppower
Click on Save

To change Rep Power:
AdminCP -> Languages & Phrases -> Search in Phrases -> Search for Text : reppower -> Search in … : Phrase Variable Name Only -> Click the Find button

Click on the Edit button
In the English (US) Translation box type your word for example : Karmic
Click on Save:

<td width=”100%”>&nbsp;</td>
<td valign=”top” nowrap=”nowrap” width=”175″>
<fieldset><legend><b>Profile:</b></legend>
<div class=”smallfont”>
<if condition=”$post['joindate']“><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition=”$post['field2']“><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition=”$post['age']“><div>$vbphrase[age]: $post[age]</div></if>
<div>
$vbphrase[posts]: $post[posts]
</div>
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]</div>
</div>
</fieldset>
</td>
<td valign=”top” nowrap=”nowrap” width=”175″>
<fieldset><legend><b>Reputation:</b></legend>
<div class=”smallfont”>
<if condition=”$show['reputation']“><if condition=”$show['reppower']“>$vbphrase[reppower]: $post[reppower] </if><div>$post[reputationdisplay]</div></if>
</div>
</fieldset>
</div>
</td>
<!– <div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]</div> –>
</div>

</td>
</tr>
</table>
<!– / user info –>

Basic Fieldset and Legend

AddThis Social Bookmark Button