Blog

Mobile theme for wordpress

Use  of smart phone has become widely popular over the world.People have started  browsing the web and blogging in the mobile it self because of the portability and flexibility it provides.Due to the popularity and growing use of phone for browsing/blogging it has...

Benifits of premium plugins

Blogging has become a common mean and probably the most desirable mean in the present world when it comes to the commercialization.Until the extensive development in the sector of the information technology; web development was considered to be the skill of highly...

Exclude Page From WordPress Search

Wordpress, by default search for post and pages. How ever you can add a filter to exclude page or post to make you search result effective. Open your functions.php from your active theme and use the following Code. function SearchFilter($query) { if...

Add widgets from shortcode in post/page

Wordpress Widgets can be easily customized and used in your theme using dynamic_sidebar('WIDGET NAME') function. But when the time comes to use it in page or post it is not that easy. As the page and post only accepts shortcodes,  you need to write a shortcode which...

How to use any font without image?

We always wanted to use custom fonts in web pages. But due to the limitation of fonts in visitors system. We were compelled to use certain fonts. But now you can generate your font files and use it in your web. Follow the following steps to use custom fonts in your...

Usefull firefox Add-ons for web development

Here is the list of Firefox add-ons which will help you in the web development. 1. Firebug With this addon you can edit, debug, inspect your html elements, css, javascript, ajax request/response. 2. MeasureIt Used to drag out a ruler to get the pixel height and width...

Add Skype Button to you web

Do you want to use skype button in your webpage to notify your skype status? You can get your skype button and embed in your webpage. Follow the link below to get your skype button. http://www.skype.com/intl/en-gb/tell-a-friend/wizard/ OR...

Create Submenu with jquery and css

Including Jquery <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script> Structure <ul id="menu-main-menu"> <li><a href="#">Home</a></li> <li><a href="#">About...

Stop skype to wrap your phone number in buttons

Skype, smart enough, but creates problem for your design with its feature to wrap numbers in button. As skype's  forum has suggested for the use of meta tag in the header but it didn't worked for me. So what you can do is just add a character in the  phone number and...

Easy way to Create Jquery Tabs

Step 1: Include Jquery <script src="{PATH TO JQUERY}/jquery.js'; ?" type="text/javascript"><!--mce:0--></script> Step 2: Creating Tab <ul class="tabs"> <li><a href="#tab1">TAB 1</a></li> <li><a...