You are currently browsing the RobotZoo weblog archives for the day 29/07/2007.
- 3D (7)
- Accessibility (16)
- Advertising (15)
- Animation (27)
- Architecture (3)
- Art (18)
- Articles (67)
- Awards (2)
- blogs (5)
- Books (12)
- Calligraphy (2)
- Coding (16)
- Colour Theory (7)
- Community building (9)
- Competitions (4)
- Crafts (4)
- CSS (49)
- Design (general) (80)
- Design Agencies (2)
- Design Fairs (7)
- Exhibitions (22)
- Film (10)
- Flash (10)
- FOAF (3)
- Games (1)
- Graffiti (19)
- Graphic Design (31)
- Illustration (53)
- Interiors (1)
- International Design (24)
- Interviews (5)
- logo design (4)
- Marketing (6)
- Music (6)
- News (27)
- Off the wall (2)
- Online magazines (9)
- Packaging design (1)
- Photography (10)
- Portfolio sites (40)
- Posters (10)
- Resources (3)
- Sculpture (2)
- Semantic Web (2)
- SEO (1)
- Software (10)
- Technology (15)
- Tee Shirt design (2)
- Trends (3)
- Tutorials (26)
- Typography (17)
- Uncategorised (11)
- Video (11)
- Web 2.0 (13)
- Web Design (76)
- 14/10/2007: Web 2.0 how-to design guide
- 22/09/2007: Niche Blogging Tutorials by doshdosh
- 22/09/2007: Internet Marketing articles by doshdosh
- 22/09/2007: D&AD: The best advertising and design in the world! Urbis, Manchester
- 22/09/2007: Hacienda 25 The Exhibition: Fac 491
- 22/09/2007: Design Process - Personal logo design sketches
- 22/09/2007: Popular Articles on Dosh Dosh: August 2007
- 22/09/2007: How to run a brainstorming meeting
- 22/09/2007: TinyURL
- 22/09/2007: Designing Design - by Kenya Hara
Archive for 29/07/2007
Free CSS Layouts And Templates
29/07/2007 by admin.
As a web-developer you don’t have to re-invent the wheel all the time. If it just has to work, and has to be valid, and has to have a nice, visually appealing design hierarchy, you just can use css-techniques developed in the web-dev-community over the last few years. If you take a look around, you’ll find many templates, which include basic (X)HTML/CSS-markup.
http://www.smashingmagazine.com/2007/01/12/free-css-layouts-and-templates/
Posted in CSS, Web Design | Print | No Comments »
Design: Layout (A List Apart articles)
29/07/2007 by admin.
Web page layouts: ways and means and meaning. Grids and rules; columns fixed, liquid, and elastic. Size, color, and contrast. To center or not to center. Layout and genre. Print paradigms and new media approaches. Let the web be the web. (36 articles)
http://www.alistapart.com/topics/design/layout/
Posted in CSS, Design (general), Web Design | Print | No Comments »
CSS - Creating Liquid Layouts with Negative Margins
29/07/2007 by admin.
by Ryan Brill another great ’A List Apart’ tutorial:
I was recently confronted with the task of creating a two-column liquid layout with a header and footer in which the content needed to come before the sidebar in the source code. I took opportunity to demonstrate an under-used aspect of CSS: negative margins. Negative margins allow us to push the content area away from the sides of the browser, leaving room for the sidebar.
http://www.alistapart.com/articles/negativemargins/
Posted in CSS, Web Design | Print | No Comments »
CSS Positioning - Relatively Absolute by The Autistic Cuckoo
29/07/2007 by admin.
Web design usually means something more than just fonts, colours and graphical elements. It also implies some sort of layout. A web designer has three available tools for creating a layout:
- tables,
- floats,
- positioning.
Layout tables belong in the last millennium. Floats are often the best solution, especially when you don’t know in advance which column will be the longest. Older browsers, and Internet Explorer, aren’t too good at dealing with floats, though. Besides, that’s a separate topic.
Positioning is perhaps one of the most misunderstood parts of CSS 2. Let us look a little closer at how it works
http://www.autisticcuckoo.net/archive.php?id=2004/12/07/relatively-absolute
Posted in CSS, Web Design | Print | No Comments »
CSS Float Layouts - by The Autistic Cuckoo
29/07/2007 by admin.
Everything Does Not Float
Panta rhei,
said Herakleitos, everything is floating. Even if the underlying philosophy, that everything is constantly changing, very much applies to the web, it doesn’t apply to today’s topic. To make an element float we have to say so explicitly, for instance like this: float:left
When we make an element floating, we ask the browser to shift it sideways, either to the left or to the right, as far as it will go.
Those who really understand the previous sentence already know half of what you need to know to use floats. There are three important pieces of information in that sentence, so let us examine them before we tackle the other, somewhat trickier, half.
http://www.autisticcuckoo.net/archive.php?id=2004/12/10/floating
Posted in CSS, Web Design | Print | No Comments »
CSS Positioning - Floats
29/07/2007 by admin.
There are a few things you should note regarding floated boxes. For one, the box being floated should have a width defined for it, either explicitly or implicitly. Otherwise, it will fill its containing block horizontally, just like non-floated content, leaving no room for other content to flow around it. As such, floated boxes are always treated as block boxes, even if they are defined using inline elements.
http://www.brainjar.com/css/positioning/default3.asp
Posted in CSS, Web Design | Print | No Comments »
CSS Float basics - What is a float?
29/07/2007 by admin.
When you float an element it becomes a block box. This box can then be shifted to the left or right on the current line. The markup options are “float: left”, “float: right” or “float: none”.
http://css.maxdesign.com.au/floatutorial/introduction.htm
Posted in CSS, Web Design | Print | No Comments »
Simple Physics
29/07/2007 by admin.
Posted at http://dd.dynamicdiagrams.com/ by Henry Woodbury on June 30, 2007 at 12:12 pm
A simple, interactive Flash application at thecleverest.com offers a mesmerizing glimpse into classical mechanics. By adjusting the location of two “planets” and the location and angle of two planes you can send a cascade of bouncy balls flying into space — or into orbit.
It’s like the spare, algorithmic, interactive version of this.
Posted in Flash, Coding, Animation, Uncategorised | Print | No Comments »
Good Illustrator Mesh Tutorial
29/07/2007 by Ken.
http://www.creativebush.com/tutorials/mesh_tutorial.php
Posted in Uncategorised | Print | No Comments »
CSS Float Theory: Things You Should Know
29/07/2007 by admin.
The concept of floats is probably one of the most unintuitive concepts in CSS. Floats are often misunderstood and blamed for floating all the context around it, causing readability and usability problems. However, the reason for these problems isn’t the theory itself, but the way the theory is interpreted - by developers
http://www.smashingmagazine.com/2007/05/01/css-float-theory-things-you-should-know/
Posted in CSS, Web Design | Print | No Comments »