Using @font-face
@font-face { font-family: 'MyWebFont'; src: url('webfont.eot'); /* IE9 Compat Modes */ src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('webfont.woff') format('woff'),...
View ArticleRounded Corners in Internet Explorer Using JQuery
Recently I wrote an article on CSS3: Rounded CSS Corners, which is a great solution for creating rounded corners. However, Internet Explorer doesn’t yet support it, but there is a solution which this...
View ArticleModern Separators In Lists Menu
Some time ago using of pseudo-class as :first and :first-child was impossible due to browsers that didn’t support CSS enough. Nowadays we have almost ideal browsers, which allows us to make really...
View ArticleMultiple excerpt lengths in wordpress
Add this to your functions.php file: function my_excerpt_length() { global $myExcerptLength; if ($myExcerptLength) { return $myExcerptLength; } else { return 80; //default value } }...
View ArticleTo add multiple menus: twentyten theme
Comment this add the code below in functions.php // This theme uses wp_nav_menu() in one location. /*register_nav_menus( array( ‘primary’ => __( ‘Primary Navigation’, ‘twentyten’ ), ) );*/...
View ArticleWP-Members Plugin
WP-Members™ is a free membership management system for WordPress® that restricts content to registered users. Download Plugin: http://wordpress.org/extend/plugins/wp-members/ Special and Optional...
View ArticleAdvanced Custom Fields
Fully customise WordPress edit screens with powerful fields The Advanced Custom Fields plugin gives you the tools to create your own custom edit screens. Boasting a professional interface and a...
View ArticleNextGEN Gallery
NextGEN Gallery is a fully integrated Image Gallery plugin for WordPress with a slideshow option. Before I started writing the plugin I studied all the existing image and gallery plugins for WordPress....
View ArticleFast Secure Contact Form
A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with. http://wordpress.org/extend/plugins/si-contact-form/screenshots/
View ArticleGet the user is logged in or not
Display different output depending on whether the user is logged in or not. <?php if ( is_user_logged_in() ) { echo ’Welcome, registered user!’; } else { echo ’Welcome, visitor!’; } ?> The call...
View Article