Graphics Design VS Web design

This is a discussion on "Graphics Design VS Web design" within the Starting Out section. This forum, and the thread "Graphics Design VS Web design are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Starting Out

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jun 21st, 2007, 12:36
New Member
Join Date: Jun 2007
Location: UK
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Graphics Design VS Web design

Hello.

I have a lot of experience with graphics design, but none what so ever with web design.

Now, in the near future i want to set up a website, selling websites/layouts/templates (graphics). However, Im pretty sure i would have to know some aspects of web design as well, right?

Now, i don't really don't want anything to do with code. lol...I really just wanted to stay on the graphics side of things, rather than getting into html/xhtml/css. etc etc. Code is not really my thing.

The point is, i want to know how i would go about doing this. I know nothing about this on the level of business.

I'm self thought graphics designer and wanted to know how i would go about dealing with the transaction process. I can easily get a pay pal account, thats not a problem. But what i mean is without any knowledge of code, and would you do business with just the graphics side of things. Know what i mean?. Like, how would i compile it ready to be put on to the web, or ready for code.

Would i have to crop the the layouts that i create? like banner,buttons,nav..etc Is there any certain way i would do this.

Basically, designing a layout and having it code ready. So they can put it together themselves or higher a coder.

Also, How much do i charge for a full layout, everything included even logo. Also, do i receive payment first before i start? or design first, then see if they like it, before i take payment. I don't want to be used or have my time tobe wasted.

As you can i know nothing about the business side of things, or having the graphics being code ready.

If you could help i would really appreciate it or maybe you can direct me to any sites that explain the business side of things.
Reply With Quote

  #2 (permalink)  
Old Jun 21st, 2007, 14:03
SuperMember

SuperMember
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Graphics Design VS Web design

I'm afraid there's a lot more to web design than graphics.

Clients will generally want a web designer (or design agency) to produce a complete website. Most are unlikely to be interested in a photoshop concept graphic alone. Few clients will want to hire a coder separately.

People come to web designers with a problem: they don't have a website (or they don't like what they have). They want you to solve that problem. Giving them a graphic does not solve the problem -- it just creates a new problem: "where can I find another web designer who will do the code?"

You really have three options:
  • Give up on web design and stick to making logos, icons, and so on.
  • Team up with a coder to form a design agency.
  • Learn some actual web design skills.
If you want to learn web design skills, there are two broad approaches. You can either use a visual design program (a bit like desktop publishing), or you can code by hand.

Coding by hand allows you to create much better websites, but it also requires a much greater investment of time for learning.

Using a design program requires much less practice, and is probably the most sensible option for someone who "really doesn't want anything to do with code". If this is your choice get DreamWeaver. DreamWeaver is the industry-standard program (it's not cheap, though).

Last edited by MikeHopley; Jun 21st, 2007 at 14:08.
Reply With Quote
  #3 (permalink)  
Old Jun 21st, 2007, 14:33
New Member
Join Date: Jun 2007
Location: UK
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Graphics Design VS Web design

What are the benefits of using dreamweaver, as appose to coding by hand. You say you can make much better websites, can you explain what the difference would be between the two.


I don't mind learning code if i have to, but what would be the benefits, i just don't want to beat around the bush, by learning things that i probably wouldn't ever use.

By the way, thanks for the information.
Reply With Quote
  #4 (permalink)  
Old Jun 21st, 2007, 14:38
Reputable Member
Join Date: Jun 2007
Location: Bellevue, SK, Canada
Age: 28
Posts: 222
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Graphics Design VS Web design

Quote:
Originally Posted by MikeHopley View Post
You really have three options:
  • Give up on web design and stick to making logos, icons, and so on.
  • Team up with a coder to form a design agency.
I'd combine those 2. You make create the look and feel, the coder turns it into a website..
Reply With Quote
  #5 (permalink)  
Old Jun 21st, 2007, 15:33
SuperMember

SuperMember
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Graphics Design VS Web design

Quote:
Originally Posted by keybear View Post
What are the benefits of using dreamweaver, as appose to coding by hand. You say you can make much better websites, can you explain what the difference would be between the two.


I don't mind learning code if i have to, but what would be the benefits, i just don't want to beat around the bush, by learning things that i probably wouldn't ever use.

By the way, thanks for the information.
In what follows, I'm talking about using DreamWeaver's visual design view (you can also use DreamWeaver for hand-coding, by never touching the design view).

Using Dreamweaver:

Advantages:
DreamWeaver is fast and intuitive. You can drag out boxes to create a layout, while the code is created for you in the background.

DreamWeaver requires minimal training time. You can learn the basics in a few hours.


Disadvantages:
DreamWeaver is superficial. You can create something that looks good, but doesn't work correctly for many users. In particular, accessibility is an issue: for example, your website probably won't make sense in a non-visual browser. Also, DreamWeaver may create invalid code that can cause unpredictable rendering errors in some browsers.

DreamWeaver creates bloated code. Your web pages will have lots of unnecessary code, which increases their file size, and therefore they will take longer to download. This can cause visitors to leave.

No-one will want to help you when your website breaks, because we can't understand your bloated, maybe invalid, machine-created code.


Coding by hand:

Advantages:
It's much easier to create valid code that will work in all browsers.

Your site will use much less code, especially if you use CSS for layout instead of tables. Using less code makes your site faster to download.

If you learn to use CSS for layout instead of tables, your pages will be much more accessible to people using a non-visual browser. Using CSS also makes your pages much easier to maintain, because you can change an entire site's presentation by editing a single CSS file.

Because you are learning about the language (HTML + CSS + javascript), you will also become aware of important issues in web design. If you never code by hand, you will be less exposed to these important concepts.

If you get really good at hand-coding, it will become faster than using DreamWeaver -- especially if you also become proficient in touch-typing.


Disadvantages:
Coding by hand takes much longer to learn. You need to think about what you're doing. To master web design, you must study it in depth. It's complicated.

For beginners, it is much slower to create a website by hand than by using Dreamweaver.

Last edited by MikeHopley; Jun 21st, 2007 at 15:44.
Reply With Quote
  #6 (permalink)  
Old Jun 21st, 2007, 15:44
SuperMember

SuperMember
Join Date: Apr 2007
Location: Ireland
Age: 15
Posts: 332
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to Pádraig
Re: Graphics Design VS Web design

EDIT: Mike beat me to it.

Quote:
Originally Posted by keybear View Post
What are the benefits of using dreamweaver, as appose to coding by hand. You say you can make much better websites, can you explain what the difference would be between the two.
There are no benefits in using Dreamweaver.

Coding by hand gives you much more control over your website and how its going to look as well as many other things too.


Quote:
Originally Posted by keybear
I don't mind learning code if i have to, but what would be the benefits, i just don't want to beat around the bush, by learning things that i probably wouldn't ever use.
If you are going to become a web designer, you will need to know (X)HTML and CSS.
Reply With Quote
  #7 (permalink)  
Old Jun 23rd, 2007, 07:50
JacobHaug's Avatar
SuperMember

SuperMember
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to JacobHaug Send a message via MSN to JacobHaug
Re: Graphics Design VS Web design

Wow Mike. Me and you are going to have to talk. Did I send you a PM or just think about doing it and ever got around to it?
Reply With Quote
  #8 (permalink)  
Old Jun 23rd, 2007, 12:14
Reputable Member
Join Date: Jun 2007
Location: UK
Age: 29
Posts: 172
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Skype™ to Voodoochilli
Re: Graphics Design VS Web design

If you want to be be a web designer you need to learn about code. At least learn about it, and if you choose to use a WYSIWYG then so be it. Its like if you were a photographer you would need to learn about cameras, how the camera software works, flash etc, as well as artistic and compositioning skills.
Reply With Quote
Reply

Tags
bussiness, design, graphics, layout, web

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Web Design (graphics + Front End) Web JobBot Job Opportunities 0 Oct 10th, 2006 11:50
Web Design (graphics + Front End) Web JobBot Job Opportunities 0 Oct 5th, 2006 22:34
Web Design (graphics + Front End) Web JobBot Job Opportunities 0 Oct 5th, 2006 22:18


All times are GMT. The time now is 06:41.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43