WordPress :: How to get rid of curly quotes

Sep 25

If you are wordpress blogger who shares piece of code with readers, and if quotes gets converted in curly quotes by wordpress then it makes tough job for your readers to use that code. WordPress also has way to avoid this. You have to put following line in your functions.php file and your problem is solved. <?php remove_filter('the_content',...

Read More

301 Redirect non WWW. URLs to WWW. Urls

Aug 11

First of all why you should have consistent www or non www URL. Keep your address unique and don’t loose any traffic. It’s SEO best practice to prevent canonicalization problems. Search engines will consider www and non www address as two different sub domains and as content will be found same on both of them so they will penalize the website for duplicate...

Read More

Text selection color change in Firefox and Chrome

Aug 03

Many time it happens when you try to select some text in browser the selected text is shown with blue color background.If for for fun you want to change its color then you can use following css3 property. ::-moz-selection{background:#ff5e99;color:#fff;text-shadow:none}::selection{background:#ff5e99;color:#fff;text-shadow:none}   ...

Read More

How many H1 and H2 tags can be kept on Page

Jan 16

Although webmasters suggest that you should have only one h1 tag and 2-3 h2 and h3 tag for atleast (1024×678) x2 page. But if the you keep more then one h1 tag on your page its not going to penalized. It depends upon your design requirement. But don’t use it as SEO trick to fool the webcrawlers. You can make whole page in h1 tag and then giving different...

Read More

Getting Select List Values & Text with jQuery

Sep 12

Many time we programmers want to retrieve the value of combo box (select element) with the help of jQuery. Getting the value is very straight forward and simple. It can be done by using [important] val() [/important]. for example.   if your select element’s id is “selectbox1” then you can write down : ...

Read More

CSS3 text-shadow

Aug 08

CSS3 has new property text-shadow to add shadow to text. .shadowclassname{ text-shadow: 0.1em 0.1em #333;color:red } Rapidop :: Quality Web Resources Text shadow has main two attributes one is color and second offset. By changing offset you can create sharp or less blured shadows. Less offset: Rapidop :: sharp shadow More offset: Rapidop :: sharp...

Read More
Page 1 of 212