Archives

Achieving user friendly Labels with .NET

 • Tags: ,

Making your forms as user friendly as possible is something we all strive for and one common technique is to make our form labels clickable – focusing on the relevant input field upon click. This can easily be achieved by using the for attribute: 1 2 <label for="inputSample">Label</label> <input id="inputSample" type="text" /> Simple enough when [...]

Continue reading article

Image Replacement Gallery

 • Tags:

For both personal and work-related projects I have, time and time again, needed a simple image replacement script. Of course when starting out we first look for examples and tutorials from books and other websites. This is when I stumbled across the ‘Image replacement gallery’ snippet from Web Designer Wall. After implementing their code, I [...]

Continue reading article