Blog: All Posts ✍️

Sharing ideas and code (RSS available)

How to remove junk from your WordPress "head" section thumbnail

How to remove junk from your WordPress "head" section

July 1, 2011 · 1 min read

The default WordPress installation has some messy code in it's "head" section. There's too much useless meta data and noise that can cause issues, and even lead to security vulnerabilities,...

Ambrosia: my new, fresh and free WordPress theme thumbnail

Ambrosia: my new, fresh and free WordPress theme

June 27, 2011 · 1 min read

In case you missed it, this blog "wears" a new theme called Ambrosia. Ambrosia is my second theme contribution on WordPress.org and is free for everyone, under the GPL 2...

Organizing jQuery Code thumbnail

Organizing jQuery Code

May 9, 2011 · 2 min read

Organizing jQuery code is not easy. Up to now, especially on small/medium scale projects, I used to have a huge jQuery ready function and place all my code there. Some...

Ambrosia theme thumbnail

Ambrosia theme

April 6, 2011 · 2 min read

Welcome to the official page of the Ambrosia theme. Here you can find more details about it. Installation Log in to your WordPress admin panel and navigate to Appearance ->...

Conditional CSS for Webkit-based browsers thumbnail

Conditional CSS for Webkit-based browsers

April 4, 2011 · 1 min read

Edit: Please keep in mind that the below code works also on MS Edge. You can re-write MS Edge specific CSS using @supports (-ms-accelerator:true) {} (read more on the comment...

Nwrapper jQuery plug in thumbnail

Nwrapper jQuery plug in

March 28, 2011 · 1 min read

The plug in I wrote for wrapping every n amount of elements, is finally online at the official jQuery plug in repository. Have a look at the demo page and...

Wrap any amount of elements with jQuery thumbnail

Wrap any amount of elements with jQuery

February 24, 2011 · 1 min read

Update: Get the nwrapper plugin from the official jQuery plugins site. jQuery provides a large variety of functions for element manipulation, that in most cases will manipulate the selected elements...

A really simple HTML5 template thumbnail

A really simple HTML5 template

January 19, 2011 · 1 min read

Lately I’m using more and more HTML5 elements on my markup. It’s the right thing to do after all, especially on smaller, flexible projects. But as a typical developer I’m...

How to create a bookmarklet thumbnail

How to create a bookmarklet

November 17, 2010 · 2 min read

A bookmarklet is a small Javascript program stored into a url. A user can bookmark the specific url, and execute the Javascript code on any page. The good news is...

A really simple "equal heights" method for jQuery! thumbnail

A really simple "equal heights" method for jQuery!

September 29, 2010 · 1 min read

Nothing special, a really basic "equal heights" method written in jQuery. Then you just need to apply the method on the element you want using $("ul li").equalHeights();....