I am looking for a “working” IE 8 CSS3 border radius hack in wp site. I am using htc file also, I have created a css file in wp theme’s css folder and placed border radious styles there with IE8 hack
How to resize colorbox
Sometimes we need to resize colorbox after clicking on sumbit button and we want to show some error or success messages on the same popup window by using javascript or ajax
Different CSS Shapes
This last part of CSS Shapes will tell you about Different CSS Shapes including Speech Bubble, Heart, Biohazard, Yin Yang, Infinity, Magnifying Glass and TV Shapes.
CSS Shapes – Chart and Ribbon
This fifth part of CSS Shapes series covers making Chart and Ribbon using CSS. The Chart is shown in Top, Right, Bottom, Left direction while Bookmark Ribbon and Badge Ribbon are two forms given of Ribbon.
CSS Shapes – Diamond and Star
Diamond and Star shapes can also be formed using CSS. This article will guide you to define CSS properties to create Diamond and Star
CSS Shapes – Square Rectangle Parallelogram Trapezoid and Polygons
We are covering how to create Square, Rectangle, Parallelogram, Trapezoid and Polygons Shapes using CSS here. It’s third part in this series of articles ‘CSS Shapes’.
CSS Shapes – Triangle
It’s the second part of CSS Shapes. In this tutorial we are discussing about drawing another CSS Shapes – Triangle. Triangles also can be used as arrow as per your requirements.
Add multiple classes in jQuery
Sometime we need to add multiple classes in jQuery. We can achieve it very simply by using jQuery addClass() method.
CSS Shapes – Circle
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.
Change Class using Jquery
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');