Wednesday 29 May 2013

Six Free Sildeshow Plugins for WordPress Bloggers

If you have a photo-blog or a website where information can be given in slides, slideshows are great ways to do so. Slideshows are dynamic and add to the look of a website. Slideshows can be especially used for showcasing portfolios, images and other latest posts. WordPress gives the opportunity to incorporate slideshows in websites using simple and ready-to-install plugins. Slideshow plugins are of great use and are handy for bloggers and webmasters.

In this article the six most popular slideshow plugins are mentioned and explained. NextGen Gallery, Slideshow Plugin and Portfolio Slideshow are the top most popular ones. 

Slideshow Plugin





About the Author: This article is contributed by ValueCoders, a leading web development company through which you can hire HTML programmers, Drupal programmers, Magento programmers and many more. One can also hire WordPress programmer here for effective WordPress development services.

Monday 27 May 2013

Creating a Toggle Switch in CSS3

These days many websites are making use of mobile like toggle switches in their interface. It makes the website appear more attractive and interactive. Now many of these toggle switches perform only the basic function that they are meant for. Here we shall try and improve their functionality to make them appear more attractive to the users.


To start with let us plan what we want to achieve with our switch. We will make use of enhanced standard checkboxes without using any extra HTML tags or attributes. Our switch must support input labels and shall only use CSS without images or JavaScript. Apart from this we shall have some simple animation on the switches.

HTML

We need an input checkbox and a label and this is how the HTML would look like
<div>
   <input type="checkbox" id="switch1" name="switch1" class="switch" />
   <label for="switch1">first switch</label>
</div>

Here we have ensured that the input has a class of “switch” assigned. In this example we are making use of three toggle switches namely switch1, switch2 and switch3. Some developers might be surprised to see a wrapper div but this is a must as we are attempting to toggle between two switches. This switch will work on all browsers including IE 6, 7 and 8


CSS
Now we come to the business end of our project. Here we will start by hiring the input box using negative margin. You might think about using display:none but that often disables on mobile devices.

input.switch:empty
{
   margin-left: -999px;
}

Once we are done with this we will style sibling labels in the input checkbox:

input.switch:empty ~ label
{
   position: relative;
   float: left;
   line-height: 1.6em;
   text-indent: 4em;
   margin: 0.2em 0;
   cursor: pointer;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

Note that we have made use of position:relative i.e. the text-indent that provides room for our switch. Also note the line-height that defines its height.

We have created the toggle itself using :before and :after elements for the different switches. What we have now is both elements are positioned at the left-hand edge of our label. We have also defined a transition for the animation.

input.switch:empty ~ label:before,
input.switch:empty ~ label:after
{
   position: absolute;
   display: block;
   top: 0;
   bottom: 0;
   left: 0;
   content: ' ';
   width: 3.6em;
   background-color: #c33;
   border-radius: 0.3em;
   box-shadow: inset 0 0.2em 0 rgba(0,0,0,0.3);
   -webkit-transition: all 100ms ease-in;
   transition: all 100ms ease-in;
}
input.switch:empty ~ label:after
{
   width: 1.4em;
   top: 0.1em;
   bottom: 0.1em;
   margin-left: 0.1em;
   background-color: #fff;
   border-radius: 0.15em;
   box-shadow: inset 0 -0.2em 0 rgba(0,0,0,0.2);
}

As and when the checkbox is checked the switch is moved to the right-hand edge and this changes the background color -

input.switch:checked ~ label:before
{
   background-color: #393;
}
   input.switch:checked ~ label:after
{
   margin-left: 2em;
}

About the Author: This article is contributed by ValueCoders, a leading web & software development company India through which you can hire WordPress programmers, Drupal programmers, Magento programmers and many more. One can also hire HTML programmers here for effective web development services.

Friday 24 May 2013

SEO, Usability & Conversion - Eleven Effective WordPress Plugins


WordPress is specialized in its SEO approach. It allows users to have brilliant SEO experience. Here are some simple WordPress plugins that can most effective in conversion, usability and SEO processes. Ten most effective WordPress SEO plugins are RB Internal Links, WordPress SEO by Yoast, Widget Logic, W3 Total Cache, Twitter Feed Pro, NextGen Gallery and Lightbox Plus, Simple URLs, Widget Logic, Use Google Libraries and Members. These plugins are varied in their function and reach. They are handy in providing automatic optimization for your website/blog, meta tag generation, API generation and support, help in Google Analytics, automatic inclusion of SEO for eCommerce websites and various other special features. If you have good content then WordPress SEO help will carry forward your presence in the world of web.

Go through the 11 best WordPress plugins below -

1. WordPress SEO by Yoast

2. Simple URLs


3. RB Internal Links

4. NextGen Gallery

5. Lightbox Plus

6. Widget Logic

7. Members

8. Use Google Libraries

9. W3 Total Cache

10. Gravity Forms

11. Twitter Feed Pro

About the Author: This article is contributed by ValueCoders, a leading outsourcing company india through which you can hire HTML programmers, Drupal programmers, Magento programmers and many more. One can also hire WordPress programmers here for effective WordPress development services.