Archive for January, 2010


List Pages at Depth 1.1

Monday, 25th January 2010

Just released an update to the List Pages at Depth plugin for WordPress.

This update fixed a pretty major bug which prevented the list showing the correct branch of subpages when the start depth was greater than 1 (secondary level pages).

Now this is fixed you’ll be able to display a list of only tertiary level pages – Useful if you have a site with a horizontal navigation with drop down menus for secondary level navigation, and want to show and subpages of the secondary level as a list in your sidebar.

What’s more the plugin now includes a widget so you can easily add a list of subpages into your sidebar.

Read the rest of this entry »


Help Improve Adobe CS4 Products

Tuesday, 19th January 2010

Recently I upgraded my Adobe Suite to CS4 and upon launching one of the application this dialog box appears…

I have been using Adobe products for many years. From my early days in design I was usingĀ Photoshop and Illustrator, and also using Macromedia’s web design products like Flash, Dreamweaver and Fireworks which were then acquired by Adobe in 2005.

In recent years I have found the the quality of the Adobe products, particularly their web development applications, Flash, Dreamweaver and Fireworks, has been slowly getting worse.

Read the rest of this entry »


JavaScript moveTo(0, 0) not working in FireFox OS X

Friday, 15th January 2010

Here’s a weird JavaScript FireFox bug…

In OS X, for some reason the following javascript was not positioning the FireFox browser window to the top left of the screen.

window.moveTo(0, 0);

Solution

Not sure what causes the problem but it seems to work find if you position the window 1 pixel lower.

window.moveTo(0, 1);