Want to load your web page speed. CSS sprites might be option. (for web designer)

What is CSS Sprites? CSSSprites is the process of combining many image into a single bigger file to use in website which help in speeding the performance. This will fetch graphic to memory and only some part of image is displayed which results in faster loading.   What Does It Mean to Combine Images Using … Read moreWant to load your web page speed. CSS sprites might be option. (for web designer)

How To Migrate WordPress Site From Live Server To Localhost Server?

You might be wondering how to transfer all the database and files from server to the localhost. This is the tutorial video you can get help from. The step wise process will tell you all the process you need to follow during migration of the data from live server to local server. This video teaches … Read moreHow To Migrate WordPress Site From Live Server To Localhost Server?

WordPress pages contain “Silence is golden.” comment. Why?

You might have wondered that some WordPress page has a weird pages with comment “Silence is golden”. Some people might complain about the hacking of the page. Even Latest version of WordPress also have these kind of pages with the comment “Silence is golden” What does it mean. Before explaining I will show you the … Read moreWordPress pages contain “Silence is golden.” comment. Why?

5 Online Money Earning Killer Ideas ( Legitimate Method)

5 ways to earn online money

1. YouTube Channel Starting a YouTube channel is the easiest way to make money online and it doesnot require any investment. Youtube recives almost 5 billion video views er day, which proves its strength on the internet. Felix Kellberg, the owner of PewDiePie (a YouTube accung), earned $12 million in the year 2015 with one … Read more5 Online Money Earning Killer Ideas ( Legitimate Method)

CSS and JavaScript Code to increase and decrease font size of text.

To add functionality of increasing and decreasing size of text in the post you need the following codes. let us suppose I have a content in a div whose id is “content”. FOR DIV <!– BUTTON FOR INCREASING AND DECREASING –> <div class=”textcontrols”> <button id=”decreasetext”> <span>A</span></button> <button role=”button” id=”resettext”><span>A</span></button> <button role=”button” id=”increasetext”><span>A</span></button> </div> <!– BELOW … Read moreCSS and JavaScript Code to increase and decrease font size of text.