Feb 7

0

Silver Portfolio

Design, Themes

Silver Portfolio - Portfolio Page

The new theme was completed and submitted to Themeforest.net. Many different designs with this one. Took a while to get something I actually liked.

Powered by jQuery for many of the animations and effects.
Comes complete with help documentation on how the page interacts with jQuery.
Custom scripts written for the portfolio page in order to show dynamic text descriptions.

Feel free to check out the template directly on ThemeForest.net. Or visit my flickr feed for more screenshots. As Always any comments and feed are greatly appreciated.

Jan 17

1

My Simple Room

Design, General

My Simple Room
A couple of days ago i was cleaning up my external hard drive and found this picture laying around… Its a simple room I created in 3D Studio Max 9 with V-RAY. If people are interested I wouldn’t mind doing a tutorial on it and how V-RAY can produce high quality environments… Let me know what you think.

Jan 11

5

LinkSlider!

General, Tutorials

LinkSlider!

So as I’m learning jQuery I wanted to post tutorials on what I’m doing and how I’m doing it. Not only in my attempt to learn more, but to help others at the same time. I’m no jQuery expert by any means, but i do believe everyone learns by hands on material. So I picked the link slider over at PSDTUTS (The envato network). I wanted to create the exact same effect without looking at their source. and this is what I came up with.

jQuery Link Slider (Demo)


jQuery(document).ready(function(){ // When the Document is Ready...

	var slider = '#bardrop'; // Name of the Slider Panel
	var hover = 'hover'; // Name of the Hover Class

// ------------------ Start Actions --------------------------//

	$('#bar h6').click(function(){ // Activate slider when Clicked
		$('#bardrop').slideToggle(250);
	});
	$(slider).hover(function() {
		// Do Nothing cause panel is Down!
	}, function(){
		$(this).slideUp(250); // Mouse out will trigger the slider to roll up...
	});

	$(slider && ' div table tr').hover(function(){
		$(this).addClass(hover);
	}, function(){
		$(this).removeClass(hover);
	});

});

Check out the Demo or Download the source below for full HTML and CSS code. I’ve also included the PSD for the Network Button… Enjoy

Download LinkSlider Source

Jan 8

0

Preview: Blue Leaf

Design, Themes

Blue Leaf Full

Just a quick preview of the upcoming wordpress theme, Blue Leaf. Let me know what you think… Still in Photoshop production and adding in the little fine detail before I slice it up for the web.. Shouldn’t be long before its available for download.

Jan 4

0

BlueRock Wordpress Theme

Design, Themes

bluerock v1.0

A free Wordpress theme, features 2 columns with widget support. Includes PSD for custom header and Silk Icons by FamFamFam.

Features

  1. 2 Columns with Widget Support in Sidebar.
  2. PSD file included for Logo.
  3. Silk Icons by FamFamFam.com
  4. Full IE6 Support

Download BlueRock v1.0

Jan 4

0

Welcome 2009

General

Welcome Banner

Welcome Everyone to Polonel.com. I would like to take a minute to introduce myself to everyone. My name is Chris Brame, I’m a Web Developer and Network & Security Guardate. Most of my time is spent in PHP and Photoshop. I do have some Programming knowledge in Delphi and .NET. I started a project about 2 years ago called Polonel Tickets. Polonel Tickets is a ticket management application used to track work orders with MySQL and PHP. (with a Windows Application frontend) All of that kind of slowed down when I wanted to get involved more. I wanted to provide this community with a resource of information. So with that in mind, I’m planning on providing articles, tutorials, and resources from all the fields I have an interest in. Leave me some feedback let me know what you would like to learn from and what information could use to help in your projects.