Note to self. When building WP sites with several js/css files, remember to include WP Minify with the regular plugins.
Pages
Other stuff
Note to self. When building WP sites with several js/css files, remember to include WP Minify with the regular plugins.
After reading Particletree's article Rediscovering the Button Element I knew there would be projects where I could use this newly rediscovered button. And so there was.
It was fun to apply this well-thought technique. But the real fun came along when I needed to adjust my breadcrumbs to fit the appearance of the buttons. This is [...]
I got really excited the first time I saw Ryan Trash's Simple Rounded Corner CSS Boxes. I decided to apply the technique to make a box that would be a link.
See the linkbox in action.
HTML for a box follows:
<div class="linkbox">
<a class="linkbox"
href="http://siteyouprobablyhaventvisited.com/">
<span class="linkbox_head">
<span class="linkbox_heading">
<span>CSS<br />Linkbox</span>
</span>
</span><span class="linkbox_body">
<span class="linkbox_body_content">
<img alt="" src="images/turtle.png" />
<p>
This box is linked to siteyouprobablyhaventvisited.com.
</p>
</span>
</span>
</a>
</div>
It was [...]