Categories
Css3

Convert an image to grayscale in CSS

Want to display a color bitmap in grayscale with just HTML/CSS? A quite little effort is sufficient for a lazy person to do this. We all know that CSS filters aren’t yet widely supported for all cases but, they are actually impressive and a basic need for web environment imagery. This allow you to modify […]

Categories
Creative blog

5 ways to make money from blogging

Make money by blogging in a day because this can be a great source of side income. If you spend enough time on blogging on your free time then this can be a good way to make money. Let’s see the five ways to start money from blogging. 1) Promote your business through blog Through […]

Categories
Css

Align text vertically next to an image

Need to Align text vertically next to an image? Here is a simple way to align text vertically that is also next to an image. Actually, this is quite simple. Apply the align to vertical to the image. Since it is all in one line, so, this is really the image that you want aligned […]

Categories
Social Media & Marketing

Get unlimited Google Plus followers

Google Plus is one of the fastest growing best social networks for content marketers and one should always give the best use of it. With this trick you can get you around 100 to 1000 followers daily and the followers will be 100% real people i.e. no bots. Here I will discuss two tricks that […]

Categories
WordPress

Make a simple plugin in WordPress

Plugin is very important role in WordPress and it helps to extend the WordPress functionality and features. Let’s make a simple plugin in WordPress. For Making a plugin in WordPress you have to do following things: Step 1: Create a directory in your plugin folder. Step 2: Then create a PHP file in this folder […]

Categories
Javascript

JavaScript performance boosting tips

Client side java Script can make your application more dynamic and active. Let’s see some performance tips that will make your JavaScript fly. Basically, the browser’s interpretation of a code can itself introduce inefficiencies. So, the performance of different constructs may varies from client to client. Below tips can make a best practices to optimize […]

Categories
Html5

Make a placeholder for a “select” box

We all know that for a text input, the placeholders are working fine. But what about if we use a placeholder for a select box as well? Let’s see. Sometimes we need to use placeholder for a selectbox and making grey color is also remarkable. Suppose, we have a following html for a selectbox: <select> […]

Categories
Css Html

Disable resizable property of textarea

Want to disable resizable property of textarea? Here is some tips to prevent the click on the bottom right corner of the textarea. To disable resizable property of textarea, there are a few options. <textarea name=”txtName” id=”txtID”></textarea> CSS can solve this problem and unfortunately it’s only supported on 60% of used browsers nowadays. Basically, you […]

Categories
Creative blog

5 things to check in your blog on each month

Here is a collection of 5 things that you should check in your blog on each month which will let you know the overall status how is your blog going on. This is not a single day task. Day by day, you will be familiar with your blog and there are lots of free and […]

Categories
Css

Margin vs Padding in CSS

Writing a CSS, there is a particular rule that should be used in deciding when to use margin and when to use padding. There are two ways in CSS for creating the space around your elements i.e. margins and padding. They are functionally identical but they behave in slightly different ways. To be clear about […]