Archive Page 11

WordPress, Plugins and Open Source

It’s funny how only now when WordPress has been updated and many plugins have stopped working, people realize how important and significant the plugins are.

Show your love for open source — say Thanks and donate. Get the developers’enthusiasm flowing.

OpenID Plugin and WordPress 2.8

Ever since using the nightly versions of WordPress, I got used to doing regular updates and not checking if all plugins work fine afterward.

Therefore only today I discovered that leaving comments on this blog has been impossible for a while already. Turns out that changes in the WordPress core have made the OpenID plugin unaware of the comment author’s name and e-mail.

Haven’t found a solution yet. Read more »

Remove Border from Image Links

For illustrating anchor links in some cases you might want to use bottom-border instead of a default text-decoration:underline. In order to achieve that, one would use the following CSS rule:

a { text-decoration:none; border-bottom:2px solid; }

which also adds border to the bottom of all linked images. In order to remove it, you would think that setting

a img { border:none; }

would be enough. Read more »