In this multi-part tutorial we will use CSS properties to draw various shapes like circles, triangles, rectangles, squares, polygon, stars, diamonds, charts and much more.  In this first part we will start with CSS Shapes – Circle and various forms of circle.

Read More

The power of jQuery offers many features to web developers. jQuery has addClass(), removeClass() and toggleClass() methods to change class.

//Add a class
$('#element').addClass('class_name');

//Remove a class
$('#element').removeClass('class_name');

//Remove old class and add new class
$('#element').removeClass('old_class').addClass('new_class');

//Or a short way to swap classes
$("#element").toggleClass('old_class new_class');

Read More

You can use Posts Viewed Recently Plugin to show the posts that are recently viewed by a visitor. This plugin supports custom post types and also provides shortcode to use the widget on any post or page.

You can know more and download this plugin via clicking the Continue Reading link given below:

Read More

Author Recent Posts Plugin shows the posts published by an author on a single post that also has written by the same author. This plugin is available with easy configurable options.

You can know more and download this plugin via clicking the Continue Reading link given below:

Read More

Many beginners use color name or RGB hexadecimal value of color to define CSS color properties and they are unaware of functional notation of RGBA color model. So in this article we tried to let them understand what is RGBA in CSS?

Read More

[ Page 21 of 22 ]