http://outsourceage.com

  • Home
  • About Us
  • Portfolio
  • Blog
  • Services
  • Contact Us

Author Archive

« Older Entries
Newer Entries »

Dentist Landing Page Design Thesis WordPress

Tuesday, February 22nd, 2011

Dentist Landing Page Design Thesis WordPress

dental

Landing Page Web 2.0 layout

dental

Tags: Dentist Landing Page Design Thesis Wordpress
Posted in portfolio, Wordpress | No Comments »

Listen to the music in any browser with audio.js

Monday, February 7th, 2011

audio

audio.js is a javascript library that lets you use HTML5 tag everywhere. And what does it mean “everywhere”? If you can use the tag, it will use it, otherwise it will connect the player to flash. The library also includes the UI display for this player, which can be modified by using css. So, first put audio.js, player-graphics.gif and audiojs.swf in the same folder and then Include the audio.js file

<script src="/audiojs/audio.js"></script>


Initialise audio.js:

<script>
  audiojs.events.ready(function() {
    var as = audiojs.createAll();
  });
</script>

Now you only have to insert the code into the page

<audio src="/mp3/juicy.mp3" preload="auto" />

source

Posted in HTML5 | No Comments »

How To Add a Custom Facebook Like Box To Your Site

Monday, February 7th, 2011

Facebook pages are becoming more and more popular with brands, bands, organisations and celebrities who want to boost their social exposure on the web. Facebook’s social plugins and widgets are a great way to link your Facebook page with your website. Let’s look at how to not only insert the popular Like Box code onto your website, but also how to customize it to fit with your design, and make sure the code correctly validates.

View the Facebook Like Box demo

View the Facebook Like Box demo

Setting up the Like Box widget

First things first, let’s get the basic Like Box widget set up. Log into your Facebook account and click the ‘Edit page’ link on the left side of your page’s profile. Over on the right you’ll see the link ‘Promote with a Like Box‘.

The first thing you’ll need is the ID of your Facebook page. You can find this by checking the URL of most of the links on your page profile.

Enter the size and configure the options of your page, then hit the ‘Get Code’ button. Getting the full potential out of a Like Box takes a lot of time and effort. If you’re looking for a quick solution the iFrame code quickly and easily inserts a box onto your webpage, but don’t expect to be able to customize it too much. If you have an hour or two to spare, copy the XFBML code.

<div id="fb-root"></div>
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php" type="text/javascript"></script>
<script type="text/javascript">FB.init("API-KEY-HERE");</script>
<fb:fan profile_id="PAGE-ID-HERE" connections="18" width="403" height="360"></fb:fan>

In order to use the FBML code, you’ll need some fancy Javascript SDK. Luckily for those of us who aren’t Javascript Wizards, you can find the code already written out from tutorials on the web. Note: The code here uses the old <fb:fan> code rather than the new <fb:like-box> code, so remember to change that in your snippet.

To get the Javascript method working you’ll also need an API key. To get one, head over to http://www.facebook.com/developers/apps.php and set up a new application. You can leave most of the details blank, as long as you end up with a key of some sort to insert into the SDK code.

Give the page a test. You should see the box load and display correctly, despite being in the boring default Facebook colours. It’s time to start customizing!

Customizing the Facebook Like Box

css="http://line25.com/wp-content/uploads/2010/facebook/demo/style.css?1"

Link your CSS stylesheet by adding a new attribute to the <fb:fan> code. The ?1 at the end is a requirement and needs changing every time you make changes to the your CSS file, otherwise the old styling will be used from Facebook’s cache. So basically if you make a change and reupload the CSS file, don’t forget to also change the index file to ?2 and so on.

css="<?php bloginfo('stylesheet_url'); ?>?1

If you’re adding the Facebook Like Box to a WordPress theme, you could use WordPress tags to render out the stylesheet URL.

The Firebug plugin for Firefox makes it easy to edit and customize your Like Box in the browser. This saves plenty of time not having to change the stylesheet identifier and re-upload all the files. Just configure the styling how you wish, then replicate the CSS in your stylesheet.

.fan_box .full_widget {
	background: none; border: none;
}
.fan_box .connections_grid .grid_item {
	padding: 0 8px 10px 8px;
}
	.fan_box .connections_grid .grid_item a img {
		box-shadow: 0px 0px 10px #333; -moz-box-shadow: 0px 0px 10px #333; -webkit-box-shadow: 0px 0px 10px #333;
	}
		.fan_box .connections_grid .grid_item a:hover img {
			box-shadow: 0px 3px 10px #333; -moz-box-shadow: 0px 3px 10px #333; -webkit-box-shadow: 0px 3px 10px #333;
		}
.fan_box .full_widget .connect_top {
	background: url(http://line25.com/wp-content/uploads/2010/facebook/demo/images/blue.png);
	border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px;
}
.fan_box .connections .connections_grid {
	padding-top:16px;
}
.fan_box .connections {
	border-top: none;
	padding:15px 0 0;
	color: #ccc;
	font: italic 21px Georgia;
	text-align: center;
	text-shadow: 0px 1px 4px #000;
}
	.fan_box .connections span.total {
		color: #fff;
	}

.fan_box .connections_grid .grid_item .name {
	color: #ccc;
	font-size: 11px;
}
.fan_box .profileimage {
	margin: 0;
}

Here’s the CSS I’ve edited and added to generate the styling used in the demo. Most of the CSS rules clear out the default styling, for example: border: none;, but there’s also some fancy additions such as the CSS3 text-shadow styling.

It’s up to you how far you go with the customization. You could simply remove or change the background and border colours, or completely rearrange the elements into something completely unique.

Fixing the validation errors

The Facebook Like Box now looks great, but the FBML code doesn’t do your webpage validation any favours. Don’t worry, there’s a quick and easy fix for that…

<div id="fb-root"></div>
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php" type="text/javascript"></script>
<script type="text/javascript">FB.init("fd161b28d6338cb852d8ed87878f67c3");</script>
<!-- FBML <fb:fan profile_id="119754924730147" connections="18" width="403" height="360" css="http://line25.com/wp-content/uploads/2010/facebook/demo/style.css?5"></fb:fan> FBML -->
<script src="js/fbvalidate.js" type="text/javascript"></script>

Download the handy Javascript file from ka-mediendesign.de. The author’s blog is in German, but you can figure out how it’s implemented pretty easily. Basically you need to reference the Facebook Validation Javascript file underneath the FBML code, then wrap the tags with <!-- FBML comments. The Javascript will then magically fix those validation errors!

View the Facebook Like Box demo

View the Facebook Like Box demo

source

Posted in SEO | No Comments »

Auto Repair Website Design theme design, customization plugin development

Tuesday, October 12th, 2010

W3C validated SEO ready HTML CSS

Designed theme, coded with WordPress 3.0, Custom pages sidebar widgets, Web 2.0 layout. Houston Texas

Auto Repair Services page layout

Auto Repair Staff / Team page layout

Auto Repair Warranties page layout / Design

Tags: Auto Repair Website Design, plugin development, SEO HTML CSS, Theme customization, W3C validated, Web 2.0, wordpress theme design
Posted in portfolio, Wordpress, XHTML CSS | No Comments »

PSD to WordPress theme customization, Plugin development – American Costmetic website

Tuesday, October 12th, 2010

PSD2wp coversion, Design to wordpress, easily changeable homepage background, flashing news box on footer, adding SEO elements. gallery, events calender, google map

WordPress Events Levitra Online page design

WordPress 3rd party Products Page

Tags: American Costmetic Website Design, plugin development, SEO HTML CSS, theme custiomization, W3C validated, Web 2.0
Posted in portfolio, Wordpress | No Comments »

WordPress Business Directory,HTML CSS, Plugins Development, Customization

Tuesday, October 12th, 2010

Business Directory Page

Featured Page

Tags: SEO XHTML CSS, theme custiomization, W3C validated, Web 2.0, Wordpress Business Directory Website Design
Posted in portfolio, Wordpress, XHTML CSS | No Comments »

Drupal to WordPress migration

Tuesday, October 12th, 2010

WordPress Theme design development pixel perfect drupal website. improving SEO structure, migrating content from drupal to wordpress.

Rotating Post slider on homepage only

WordPress Booking Page with payment options

Tags: Drupal to Wordpress, improving SEO structure, Rotating Post slider, Wordpress Booking Page with payment options
Posted in portfolio, Wordpress | No Comments »

PSD to WordPress Safari Website

Tuesday, October 12th, 2010

PSD to Worpdress

  • W3C Validated HTML CSS
  • Two Layouts
  • Custom drop down menu
  • Homepage Flash Slideshow
  • Attachment manager
  • on page PDF Viewer

Tags: add slideshow to any page, Custom image based navigation, dynamically listing attached pdf files on sidebar, Homepage Slider, HTML CSS, PHP
Posted in portfolio, XHTML CSS | No Comments »

SEO Article Writing

Tuesday, October 12th, 2010

On page SEO, SEO  Article Writing, Keywords density analysis, Sitemap submission to Major Search engine, Articles submission to US local directories.

Splash page SEO article

Buy Levitra Online Without Prescription alt=”" width=”520″ height=”902″ />

Tags: Keywords density analysis, On page SEO, SEO Article Writing
Posted in portfolio, XHTML CSS | No Comments »

PSD to WordPress Boxing Association

Tuesday, October 12th, 2010

Professional Boxing Associate Website: PSD to wordpress

We convert your PSD design to a fully W3C standards compliant, cross browser compatible with WordPress theme, and that search engines love traffic would find its way to your website!We convert your PSD design to a fully W3C standards compliant, cross browser compatible with WordPress theme, and that search engines love traffic would find its way to your website!

Tags: cross browser compatible with WordPress theme, HTML CSS, PSD to Wordpress Boxing Association
Posted in portfolio, Wordpress | No Comments »

« Older Entries
Newer Entries »

Topics

  • Categories
    • Adobe Photoshop
    • Compatibility
    • Dreamweaver
    • HTML CSS
    • HTML5
    • JS JQuery Ajax
    • News
    • OSCommerce
    • PHP MY SQL
    • Psd to wordpress
    • Search Engines
    • SEO
    • Testimonial
    • wordpress
  • Our Portfolio - The stuffs what we did

    PSD to Wordpress, OS Commerce, Wordpress Plugin Development. Please, browse our portfolio.

    View Our Portfolio

  • What our customers say about us?

    Read our customer testimonials to find out why our clients keep returning to Glue for their projects.

    View Testimonials

Wordpress website design, Search Engine Optimzation, Theme Customization, plugin development

Facebook LinkedIn Twitter Flickr Odesk eBlogger

PSDtoWP Coversion

We convert your PSD design to a fully W3C standards compliant, cross browser compatible with WordPress theme, and that search engines love traffic would find its way to your website!

We ensure the proper usage of h1, h2, h3, alt, title and other html tags durring PSD to WP Conversion, timely delivery is what makes us apart of the competition.

Sitemap

  • Home
  • About Us
  • Services
  • Portfolio
  • Testimonials
  • Contact Us
  • Sitemap

Explore

  • Delicious
  • Digg
  • StumbleUpon
  • Ask
  • CSS Beauty
  • CSS Mania
  • slashdot.org
  • Smashing Magazine
  • Web 2.0
  • Joomla
  • WordPress
  • Valid XHTML
  • Valid CSS

© 2005-2011 All Rights Reserved. Outsourceage Tel: +9233 666 555 74. Email: info@outsourceage.com

Privacy Policy. Terms of use. Valid XHTML & CSS