Friday, 8 August 2014

Some Best Code Playgrounds for Web Developer

coderarnab
coderarnab 


1. jsfiddle.net - This is a nice code playground for r Web Developer.


2.  codepen.io - This another nice code playground for r Web Developer. t`s looking very cute.The service highlights popular demonstrations (“Pens”) and offers advanced functionality such as sharing and embedding.


3 .cssdeck.com -  Another very nive code playground for r Web Developer. It’s similar to CodePe.


4.jsbin.com - It has a cool featuress like JavaScript console.


5. dabblet.com - Another  cool   code playground for r Web Developer.


6. liveweave.com - This is also a nice  code playground for r Web Developer.

Wednesday, 30 July 2014

Three css3 Animations plugins

etwoz


Here I will share three very nice and very usefull css3 Animations plugins I think I will help you if you are a web developer like me.

1 getuikit.com - official website - http://www.getuikit.com/

 github page - https://github.com/uikit/uikit

2. WOW - official website - http://mynameismatthieu.com/WOW/

github page - https://github.com/matthieua/WOW


3. css3animateit/ - official website - http://jackonthe.net/css3animateit/

github page - https://github.com/Jack-McCourt/css3-animate-it

Wednesday, 11 June 2014

How to add Related Post in Wordpress Without a pluin

You can done this by tow ways , one by tags and another by category. So how to do this?




related post in wordpress by Category



1. Add this code in functions.php



    add_theme_support( 'post-thumbnails' );  
    set_post_thumbnail_size( 150, 150, true );


2. Then add this codode in single.php




    




3.Add Some css to your style.css








.relatedposts {width: 640px; margin: 0 0 20px 0; float: left; font-size: 12px;}
.relatedposts h3 {font-size: 20px; margin: 0 0 5px 0; }
.relatedthumb {margin: 0 1px 0 1px; float: left; }
.relatedthumb img {margin: 0 0 3px 0; padding: 0;}
.relatedthumb a {color :#333; text-decoration: none; display:block; padding: 4px; width: 150px;}
.relatedthumb a:hover {background-color: #ddd; color: #000;}

                  
				  




related post in wordpress by tag





add this code in functions.php





    add_theme_support( 'post-thumbnails' );  
    set_post_thumbnail_size( 150, 150, true );

                  
				  




Then add this codode in single.php









3 Some css style





.relatedposts {width: 640px; margin: 0 0 20px 0; float: left; font-size: 12px;}
.relatedposts h3 {font-size: 20px; margin: 0 0 5px 0; }
.relatedthumb {margin: 0 1px 0 1px; float: left; }
.relatedthumb img {margin: 0 0 3px 0; padding: 0;}
.relatedthumb a {color :#333; text-decoration: none; display:block; padding: 4px; width: 150px;}
.relatedthumb a:hover {background-color: #ddd; color: #000;}

                  
				  

Thursday, 1 May 2014