Don’t Click It!

Today I stumbled across a very interesting website. It is different from any website I have ever seen because it actually encourages the viewer not to click on anything. What did I just say? That’s right… don’t click it! In fact, if you do click, whether it is accidental or intentional, you will get a [...]

Display the Latest Posts with WordPress

If you set a static page as your front page, it can be a little tricky figuring out how to link to a page that shows your latest posts. So far I have come across two solutions you can use with your WordPress blog when linking to such a page.
Solution One
Create a link in your [...]

Apply CSS Transparency to Images

To apply CSS transparency to images add the following properties and values to the appropriate CSS selectors. An image without any filters applied to it has an opacity of 1.0. If an image has 30% opacity it also has 70% transparency. Hover your mouse over the image below for an example.

a.thumbnail img {
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
-moz-opacity: 0.50;
opacity:0.5;
}
a.thumbnail:hover [...]