WordPress 3.3.2 is released!

Today WordPress has released its latest version 3.3.2 to public! There are mainly security updates in this release. The db_version is remain same as it was 19470. Following security patches covered: Media upload Privilege Cross-site scripting vulnerability And following are … Continue reading →

css-icon-delicious

CSS Social Icon – Delicious

In my leisure time (really?) I have made Delicious icon with pure CSS. Compatibility: IE7, IE8, IE9, Firefox 3.8+, Safari 5+, Chrome 14+, iPhone, Android, iPad, BlackBerry, Windows Mobile Live example of Delicious CSS icon HTML <!DOCTYPE html> <html> <head>title>CSS Social … Continue reading →

Navayan Equal Height jQuery Plugin

Recently I was working on one small project and I had to use minimum resources as it is accessible on mobile devices too. There was one requirement of equal height of two elements. So instead of depending of any third … Continue reading →

Cross Browser custom font

Designers and Developers generally go with traditional uni-platform font families ie. Arial, Helvetica, san-serif. But if we use a custom font in design it is also easy to integrate in our webpage. Method 1 – @font-face in CSS @font-face { … Continue reading →

wordpress-sidebar-widget

Creating simple WordPress 2.8+ widget

WordPress widgets is a great feature for displaying your content in sidebar. It is easy to create by extending WP_Widget predefined wordpress class. Constructing Widget class your_widget extends WP_Widget { public function __construct() { $this->WP_Widget( ‘your_widget_unique_id’, __(‘Your Widget Title’), array(‘description’ … Continue reading →