Adobe has announced Adobe Edge – a new tool for creating web animation with HTML5, CSS3 and JavaScript. One of the nice features is the ability to import SVG, PNG, JPG or GIF files. It looks like an easy learning curve if you’re used to working in Flash with the timeline. This will definitely help developers address Apple’s lack of support for Flash on its devices. You can download a free preview from Adobe to check it out.
While working through a code rework on an old site last week, I remembered a few CSS tricks I hadn’t had to use for a while. I thought I’d post a little refresher to share these tips that might help you out of a coding bind.
The child selector:
Let’s say you have an unordered list with an id of ‘nav’ and you only want a certain style on the top level list items. If you try to target them by using #nav li, all of the the list items, even in nested lists in that ul will be targeted. This is the perfect place for a child selector. If you use #nav > li, only the direct children (list items one level down) will be affected. Read the rest of this entry »
When you install a WordPress blog on your own server, you can install plugins to enhance the functionality and improve security. These are some of my favorites:
Maintenance Mode – Nice plugin for displaying a maintenance message when you’re working on the site.
Twitter Tools – for integration between your WordPress blog and Twitter account
Google Sitemaps – Creates a Google Sitemaps compliant XML-Sitemap of your WordPress blog
Image Widget – Image widget for sidebar so clients can easily update images
Rich Text Widget – Adds a rich text editor widget so your client won’t have to work with code in a text widget.
These are just a few of the plugins I use most frequently. There are many more available. If you can think of something that you’d like to do in WordPress, the odds are good that there’s a plugin for it. When you download plugins, there should be a readme.txt file with installation instructions and notes, but generally you can just add the folder to your plugins directory and activate it through the admin panel. Remember to deactivate plugins when upgrading WordPress and check to make sure that the ones you’re using are compatible with the version you’re upgrading to.