Urban75 Home About Offline BrixtonBuzz Contact

how much coding do you need to learn to design websites?

A division of labour doesn't have to mean a division of expertise.

Are you trying to say that products wouldn't be better if everyone involved in the process was more skilled in the techniques of the others?

The distinction is entirely a bogus one which has more to offer the corporate org chart and payroll rather than the ends of good design and products.

i'm answering the question of 'how much coding do you need to learn to design websites?'
and clearly the answer is 'none'.

of course, cross-knowledge is preferable when working on a project with different disciplines.
 
all very complicated. i take it by doing some online html tutorials i'm on the right track for starting off?
 
i'm answering the question of 'how much coding do you need to learn to design websites?'
and clearly the answer is 'none'.

Only in the most absurdly reductionistic sense. You can compose a symphony with no ability to play music nor knowledge of music notation, but it wouldn't be good advice to aspiring composers to ignore these things.

The best advice to aspiring web designers is to learn at least the basics of HTML and CSS before you even look at something like Dreamweaver.
 
yes i would to suggest learning html and have an understanding of css if you are going to design for web sites it will make things easier for all parties involved
 
anyone recommend any free online html tutorials that take you from the basics through to a fairly decent level?
 
I don't know why people are writing that you need a knowledge of PHP in order to make an advanced website... haven't you ever heard of a Content Management System?
 
a person who makes a site is different from a web designer

in the same way fixing your car with a hayes manual doesn't make you a car mechanic
 
Have you ever tried making one do what you want it to, rather than what existing modules allow, without knowledge of PHP?

What do you want it do for you, make you a cup of coffee in the morning? Give you a massage before you go to bed?

There are a number of well-developed CMS out there with stacks of third-party add-ons.

To be truly innovative then a knowledge of PHP or some other server-side script is essential, but all those not worrying about creating the next Facebook or MySpace...
 
With many CMS you're just swapping one kind of complexity for another. For a quite specialist system like WordPress, running a blog is straightforward because it's oriented mostly towards that kind of task. For more general CMS, the more you deviate from the default way of doing things, the harder it will be.

I've installed CMSes in the past where I haven't even been able to work out how to create a single page after a reasonable amount of time trying.

Out of interest, do you recommend any particular system? None of the general CMSes I've used have been very straightforward.
 
What do you want it do for you, make you a cup of coffee in the morning? Give you a massage before you go to bed?

There are a number of well-developed CMS out there with stacks of third-party add-ons.

To be truly innovative then a knowledge of PHP or some other server-side script is essential, but all those not worrying about creating the next Facebook or MySpace...

Just little things like customising field types so that users can enter things and have them reformatted into useful links and HTML. I have to do this constantly with Drupal, which my current main client uses - sometimes to the extent of writing new modules for the really outré functions, but mostly little bits of PHP in footers and computed fields.
 
yeah for example i have an seo book that tallks about customising wordpress to do things like adding no follows to links in comments


even if you don't know how i would want any webdesigner to understand why you wouls want to do that
 
I can confirm that drupal is impossible to customise beyond the very basics unless you spend years understanding it's arcane innards. Piece of crap imo.
 
a person who makes a site is different from a web designer

in the same way fixing your car with a hayes manual doesn't make you a car mechanic

I don't think there's a hard and fast distinction. Most people can take photographs but few would describe themselves as photographers. There are even fewer that you'd happily pay £1500 to photograph your wedding.
 
Haml is fun.

Code:
!!!
%html
  %head
    %title My webpage
  
  %body
    %h1 Hello world!

renders to:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.or
g/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
  <head>
    <title>My webpage</title>
  </head>
  <body>
    <h1>Hello world!</h1>
  </body>
</html>
 
With many CMS you're just swapping one kind of complexity for another. For a quite specialist system like WordPress, running a blog is straightforward because it's oriented mostly towards that kind of task. For more general CMS, the more you deviate from the default way of doing things, the harder it will be.

I've installed CMSes in the past where I haven't even been able to work out how to create a single page after a reasonable amount of time trying.

Out of interest, do you recommend any particular system? None of the general CMSes I've used have been very straightforward.
Have you checked SilverStripe?
 
I'm impressed, got it installed on ubuntu server 8.04 and am giving it a good looking at. Thinking of using it to develop this site. It's interesting the developers have switched from secret source to BSD. I think that's :cool:
 
Back
Top Bottom