Archive for category Web Design
HTML 5, whats to know
Posted by Matt in Codeing, Web Design on May 23, 2010
The new web standards HTML 5 and CSS 3 seem to be getting a lot of good press at the moment. So what’s out there for the working web dev to learn from?
Some very interesting demo’s of what can be done are available around the web but I’m in need of some good tutorial recommendations. So what you got that offers more than http://www.w3schools.com/html5/html5_reference.asp
Please share your links in the comments
Six useful tips and tools for web developers
Posted by Matt in Codeing, Web Design on March 2, 2010
As part of my day to day working and reading I often come across useful tips and tools which I add to my Delicious bookmarks. I share these automatically in the right hand bar of this site. From time to time I will highlight some of the best and most useful of these links.
Use JavaScript to move items between two select lists
Html multiple selects are probably the most unfriendly form elements in the html specification as they provide no visual clues on how to interact with them. By applying some JavaScript however you can use them to create an intuitive user experience for selecting multiple values. The link below will take you to a nice tutorial with code samples and downloads that can easily be integrated with some CSS and back end scripting to produce a powerful select control.
http://www.mredkj.com/tutorials/tutorial_mixed2b.html
Fixing your footer with CSS
One of the most frustrating aspects of CSS based layout is getting the footer of a site to stick to the bottom of the page no matter the screen size or content on the page. This link will take you to a great article that describes how to achieve this in a cross-browser friendly way. It even works with IE6.
http://fortysevenmedia.com/blog/archives/making_your_footer_stay_put_with_css/
Fixed table headers
Tables are an essential tool for displaying data in web applications but can become difficult to understand and interpret if you have to scroll down to see lots of data. By fixing the header if a table in place and just scrolling the data your tabular data will be far more user friendly and easier to understand. The example located at this link will show you how to achieve this by applying some CSS to your table header and body.
http://www.imaputz.com/cssStuff/bigFourVersion.html
Toggle visibility of a page element
Some times you need to make the display of information optional . This link illustrates a number of methods to do this.
http://www.dustindiaz.com/seven-togglers/
Maximum and Minimum height and width support in Internet Explorer
IE6 doesn’t support them and IE 7 only supports them when you declare a strict DocType. This article describes how you can use some proprietary IE features to simulate these incredibly useful features.
Test your PHP regular expressions
Regular expressions are a powerful programming tool . I’ve used many test platforms when creating regular expressions but for designing expressions for use with PHP’s regular expression functions this tool rocks.
http://www.spaweditor.com/scripts/regex/index.php
Do you have a useful tool or tip you’d like to share? Why not add a link into the commonts of this post.
R.I.P. Old friend
Posted by Matt in Randoms, Web Design on October 26, 2009
BBC NEWS | Technology | End of an era for early websites.
GeoCities , the original free web host finally closes its doors today.
Born out of the original dot com boom GeoCities was an early champion of user generated content and provided many with their first introduction to web design and hosting with its themed cities providing many people their first real outlet for personal expression.
Many of todays web professionals cut there html teeth on GeoCities and I can’t but help feel that the next generation raised on the easy interfaces of Facebook , MySpace , Bebo et al may be missing out on something.
Tweaking flexible layouts by a fraction
Posted by Matt in Web Design on October 21, 2009
Have you ever found yourself in the situation when laying out a fluid design on page that 100% was too much but 99% came up a little short?
I found myself facing this situation today. A containing div that held a scrollable table was pushing the overflow scrollbar over the border of its containing div. Changing the width of the container to use {width:99%}was just as unsightly as it then left a noticeable margin to the right of the table, especially when the table had insufficent rows to trigger the overflow.
On a pure whim I tried the rule {width:99.5%) and low and behold the border got a little smaller. In the end I settled on a {width:99.8%} which gave me the perfect result I was looking for. Even better the rule was applied uniformly across IE and Mozilla browsers. A search on the web revealed very little information on this feature other than it’s valid unit of measure in css It’s something I know I’ll find very handy in the future.






















Recent Comments