Posted on June 29th, 2007 by Josh Stauffer
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 [...]
Filed under: Peculiar Sites, Ramblings | 1 Comment »
Posted on June 14th, 2007 by Josh Stauffer
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 [...]
Filed under: WordPress | 1 Comment »
Posted on June 7th, 2007 by Josh Stauffer
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 [...]
Filed under: CSS | 1 Comment »