Our Services

We offer
» Low cost solutions
» End to end under one roof
» Implementations that suit you
» Prompt and reliable service
» Independent advice
» Comprehensive online support
» No hidden fees or charges
» Over 10 years experience

"To construct a web page isn't technically difficult, virtually anyone with some basic PC skills and a little bit of software can do it.
But to develop a web site, with a cohesive user friendly feel and a consistent corporate look that is easy to navigate and optomised for use on the internet, requires a professional."

TIPS and TRICKS - Web Page Design

CSS Media Types

Displaying Your Pages Differently to Different Media
By Jennifer Kyrnin

CSS media types allow you to format your documents to display correctly on various types of media, such as on the screen, on paper or in braille.

The valid media types are:

  • all
    The styles should be used for all media types.
  • screen
    The styles should be used on color computer screens.
  • print
    The styles should be used on paper formats and documents viewed in "print preview" mode.
  • tv
    The styles should be used on television style devices, with low resolution, color and sound.
  • handheld
    The styles should be used on small, usually monochrome, devices such as phones or PDAs.
  • projection
    The styles should be used with projection devices like overheads.
  • tty
    The styles should be used on teletype style devices with a fixed-pitch character grid.
  • aural
    The styles should be used with speech # synthesizers.
  • braille
    The styles should be used with braille devices.
  • embossed
    The styles should be used on paged braille printers.

You can define media types in several ways: @media print { p { font-size: 14pt;} } @import url("import.css") tv;

Browser Support

Netscape 4 only recognizes the "screen" media type - and it only recognizes it in the first example. IE 4 Windows and 4 and 5 Macintosh don't support the @media or @import media type designations.