Category Archive: Web Design

Safe Cracker, Channel Form, Whatever Its called. Tutorial.

I’ve not had much experience using SafeCracker Channel Form, and I think its starting to show. I have a pretty typical form which is posting to a channel. But I can’t seem to… Continue reading

a quote to belive in.

Those who don’t believe in magic will never find it. Roald Dahl, (13 September 1916 – 23 November 1990). Just because :]

Hover over an image to display it in the main view port. ;]

Hover over an image to display it in the main view port I’m working on a shopping element, I have a quad of images for an item each displaying different angles. One image… Continue reading

Design Workflow with actions. grid.

Using a grid is a good way to keep all your work clean. …when designing. Its not always the best was to build a site but using a photoshop grid is almost a… Continue reading

CSS 3 Gradients

A really cool site which comes in handy when sorting out css gradients is You can also learn allot from this code! http://gradients.glrzad.com/ This gives you options and live code view of whats… Continue reading

Jquery .bind + .on

These two event handlers do basically the same thing, with .bind having a slight advantage. The are both used to add an event to a selection; you could writh the jquery like this:… Continue reading

Jquery selecting more than one class.

Just something I noticed might sound obvious but here it is; $(.class1, .class2, .class3).on(mouseenter, function){ blah blah… } really easy, just add a “,” after the origina class and a space. “.class2, .class3”.… Continue reading

Adding a class with Jquery :] (+Removing a class)

me, I’m Totally new to Jquery, but its quite easy to manager simple events and tasks. To add a class with Jquery is really simple; $(“.x”).addClass(“MyClass”); $(“.x”).removeClass(“Myclass”); easy right? the “$” in jquery… Continue reading

Multiple class select with pseudo : selector :]

AHH what the hell is that rubbish!? If you check out the css, this is just a quick way to select more than one class (.img01 img), and then apply the same rule… Continue reading

How to have more than one class CSS 3 HTML 5!

It just occurred to me that this is a simple thing but also a very useful thing! If you ever have a situation where you need to target the same element but as… Continue reading