March 8th, 2010
There’s a way to upgrade all of your wordpress plug-ins at one time. IF you have Wordpress 2.9.1 installed, you can do this. A shortcut way to get to this page is to go to:
http://www.yourdomain.com/wp-admin/update-core.php
Otherwise you may only find a link to this when you have a notification
Posted in Uncategorized | No Comments »
March 6th, 2010
My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…
Posted in Bookmarks | No Comments »
March 2nd, 2010
My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…
Posted in Bookmarks | No Comments »
February 25th, 2010
My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…
Posted in Bookmarks | No Comments »
February 19th, 2010
My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…
Posted in Bookmarks | No Comments »
February 15th, 2010
My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…
Posted in Bookmarks | No Comments »
February 11th, 2010
My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…
- Select multiple form fields – finding a better solution for multiple selection –
- Quick Tip: Dynamically add an icon for external links » Learning jQuery – Tips, Techniques, Tutorials –
- Quick Tip: Click Table Row to Trigger a Checkbox Click » Learning jQuery – Tips, Techniques, Tutorials – 3
- Quick Tip: Prevent Animation Queue Buildup » Learning jQuery – Tips, Techniques, Tutorials –
- Slide Elements in Different Directions » Learning jQuery – Tips, Techniques, Tutorials –
- Tab Navigation with Smooth Horizontal Sliding Using jQuery » Learning jQuery – Tips, Techniques, Tutorials –
- Slicker Show and Hide » Learning jQuery – Tips, Techniques, Tutorials –
- Using jQuery to Show/Hide Form Elements Based on a Checkbox Selection – All the Good Titles Were Taken – Chris Scott –
- Improving Search Boxes with jQuery | yensdesign – Tutorials, Web Design and Coding –
- The Font-as-Service | i love typography, the typography and fonts blog –
Posted in Bookmarks | No Comments »
February 9th, 2010
My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…
- New version of rgba.php is out! « Lea Verou –
- WordPress › Support » 2 or 3 column categories in sidebar –
- WordPress › Support » List 5 most recent post of a category on main page –
- Fade In/Out Test –
- The Anatomy of Web Fonts [Design Principles] – In my opinion, letter spacing (or tracking) as controlled by the letter-spacing property in CSS should never be used for body text. It's not very cross-browser friendly, and what you may see in Firefox may be drastically different in Internet Explorer or Safari. Furthermore, it seems wrong to mess about with the tracking that each font has built into it. The type designer carefully calculates these spaces, and most of the time, they're going to provide good results without any extra tampering.
- Anonymous Customer Drupal Account Optional Patch | Ubercart –
- Dezignus.com – vector,icons,brushes,textures, wallpapers,anime,girls,tutorials –
- WordPress › Exclude Pages « WordPress Plugins –
- Display your categories in two columns –
- The Ultimate Collection Of Free Vector Packs – Smashing Magazine –
Posted in Bookmarks | No Comments »
February 5th, 2010
My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…
Posted in Bookmarks | No Comments »
February 3rd, 2010
Here’s a snippet that will give you an instant sidebar navigation in Wordpress. It grabs the post parent title and the children of that parent.
Download wordpress-sidebar-nav.txt
< ?php
$parent_title = get_the_title($post->post_parent);
$permalink = get_permalink($post->post_parent);
if($post->post_parent) {
$children = wp_list_pages('title_li=&child_of='.$post->post_parent.'&echo=0');
}
else {
$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
}
?>
< ?php if ($children): ?>
< ?php endif; ?>
Posted in Snippets, Wordpress | No Comments »