Leave a Reply
Customize Your Wordpress!
Check out the list of Awesome Wordpress Tutorials. Adding new articles whenever possible. These tutorials can help your customize your Blog according to your needs.
You can also contact us for Custom Wordpress Tutorials or even hire us to get your Blog some new looks.
Awesome Wordpress Tutorials!
The Dummy Content File
A Simple XML Dummy Content File to check Typography and usability of a WordPress Theme. Great for Wordpress Theme Developers, Testers and Sellers.
Head over to The Dummy Content File article to know more about it.




Display Comment Author Url on Hover
by Enk. on 07. Feb, 2010 in Wordpress
This is a simple trick, not really useful. But you can use it if you like it. If you have ever noticed in Web Designer Wall’s comment section. Whenever you hover (put mouse over) on any comment author name, It shows the author url with an arrow next to it. Its possible through CSS, but older browsers like IE6 doesn’t support it. So here I’m sharing how can we do this with simple jQuery.
Just add following code in functions.php of your theme.
$(document).ready(function() { $(".author a").hover(function() { $(this).next("span").css({ display: "inline"}); }, function() { $(this).next("span").css({ display: "none"}); }); });Add this code to your stylelsheet for CSS.
.author span.hidden { display:none; font-size:small; } ;Replace Comment Author Name code with
The above code is hiding some part from line no 2. Select all to copy the hidden code, sorry!
Tags: author, comment, jquery, Wordpress tutorial