Site Design 101

This is a discussion on "Site Design 101" within the Website Planning section. This forum, and the thread "Site Design 101 are both part of the Planning Your Website category.



Go Back   Webforumz.com > Main Forums > Planning Your Website > Website Planning

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Apr 26th, 2007, 09:34
Up'n'Coming Member
Join Date: Apr 2007
Location: Notts, England
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
Site Design 101

Hi All,

Ive been into web design for some time, but am pretty shocking.

The question that has been bothering me recently is:

Should it matter what the code looks like, as long as it works?

I try to make my code as minimalistic as possible, but it always seems to go wrong and I never manage to complete a website.
Reply With Quote

  #2 (permalink)  
Old Apr 26th, 2007, 11:47
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

What do you mean what the code looks like?

If you code it right, it will work in ALL browsers but if you do stuff like (that we've seen just recently on the forum)
Code: Select all
<ul><span></span>
  <li>...</li>
  <li>...</li>
  <li>...</li>
</ul>
Then ... it works in some browsers, but not all AND it's not semantic!

Integrated Web Design: The Meaning of Semantics (Take I)
Reply With Quote
  #3 (permalink)  
Old Apr 26th, 2007, 11:59
Up'n'Coming Member
Join Date: Apr 2007
Location: Notts, England
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

More like using tables for layout, or should divs be used from now on?

like the code for this site, it has the <styles> outside of the head in some places, but that seems messy to me..

is it just me being to uptight or should I just do whatever i want as long as it works?
Reply With Quote
  #4 (permalink)  
Old Apr 26th, 2007, 12:07
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

Quote:
Originally Posted by motlive View Post
More like using tables for layout, or should divs be used from now on?
You shuold always be coding your layout with CSS and DIV. Tables were never meant to be used to gel your layout together, they were meant for tabular data. See the link in my sig, it's also a sticky in some of the forums.

Quote:
Originally Posted by motlive View Post
like the code for this site, it has the <styles> outside of the head in some places, but that seems messy to me..
That's probably just because of the implication of a forum ... it's complicated stuff. I know the next version will be more semantic and valid tho Our admins are working on that.

The <style> element should belong in the <head> of the document and nowhere else

14.2.3 Header style information: the STYLE element
Quote:
The STYLE element allows authors to put style sheet rules in the head of the document. HTML permits any number of STYLE elements in the HEAD section of a document.
Quote:
Originally Posted by motlive View Post
is it just me being to uptight or should I just do whatever i want as long as it works?
Please .... be uptight! Start coding your pages the right way form the beginning and you can do wonderful thing. For example, if you code your page (the HTML) properly, then you can later on just change the CSS to give it a nice refresh. The CSS ZenGarden is a great example of that. Every style uses the exact same HTML, only a different stylesheet is loaded.
Reply With Quote
  #5 (permalink)  
Old Apr 26th, 2007, 12:15
Up'n'Coming Member
Join Date: Apr 2007
Location: Notts, England
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

CSS Zen is pretty nice, i like that.

I am also of the mind that you shouldnt steal peoples code, but something like css zen seems like a good place to start and recycle the code, as if you try to emulate it you should come up with pretty much the same code.
Reply With Quote
  #6 (permalink)  
Old Apr 26th, 2007, 12:28
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

Yes stealing code is bad but, stealing designs is worse.

I doubt you'll get flogged for stealing "code". I mean ... you'll notice on thousands of sites people use <div id="wrapper"> or <div id="containter> ... same thing for the header ... you'll see a bunch of <div id="header"> or <div id="masthead">. So ... it's very hard to be "original" in the code.

It's more the design you have to be careful about.
Reply With Quote
  #7 (permalink)  
Old Apr 26th, 2007, 22:19
SuperMember

SuperMember
Join Date: Apr 2007
Location: a very nice place
Age: 55
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Post Re: Site Design 101

Hay Karinne,

Quote:
"Yes stealing code is bad but, stealing designs is worse"
I couldn't agree with you more especially when it comes to stealing others designs.

I know when it comes to the coding, unless one creates a totally new and unigue code of their own, it's virtually impossible to avoid coding similarities.

However, the likely hood of design similarities are few and very very very far between if at all but, with the millions of sites on the Internet it'll be hard to protect your design from those who'd be incliend to steal it even with all available preventive measures in place.

Perhaps in the future we'll have websites code & designs that will self distruct during any attempts at modifying for reuse.
Reply With Quote
  #8 (permalink)  
Old Apr 26th, 2007, 22:25
Up'n'Coming Member
Join Date: Apr 2007
Location: Notts, England
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

Would never steal someones design, is dirty and wrong, and some kind of electric killer monkey should be sent to peoples PC's who steal the designs of others.

Code is too similar these days, especially with the way CSS works and the hacks to get things to function.
Reply With Quote
  #9 (permalink)  
Old Apr 26th, 2007, 22:54
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

Quote:
That's probably just because of the implication of a forum ... it's complicated stuff. I know the next version will be more semantic and valid tho Our admins are working on that.
Oh you have no idea. If we ever finish it, it's going to be the most beautiful thing you'll ever see.
Reply With Quote
  #10 (permalink)  
Old Apr 26th, 2007, 23:16
sannbe's Avatar
SuperMember

SuperMember
Join Date: Dec 2006
Location: San Francisco
Age: 57
Posts: 1,567
Blog Entries: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

Quote:
Originally Posted by Ryan Fait View Post
Oh you have no idea. If we ever finish it, it's going to be the most beautiful thing you'll ever see.
We want it NOW, Ryan!!!! Just Tell J and R to get off their tushes and get to work. You can't do everything.
Last Blog Entry: More Sara Blogging (Nov 29th, 2007)
Reply With Quote
  #11 (permalink)  
Old Apr 27th, 2007, 02:45
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

I was actually working on it today. Been a while since I touched the code. It's a pain getting it to work in IE. Rob and I are extremely far from being done, so don't expect it in the next few months.
Reply With Quote
  #12 (permalink)  
Old Apr 27th, 2007, 12:17
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

Quote:
Originally Posted by Ryan Fait View Post
Oh you have no idea. If we ever finish it, it's going to be the most beautiful thing you'll ever see.
Actually ... Rob told me (and showed me ) a "tiny" bit about it!
Reply With Quote
  #13 (permalink)  
Old Apr 28th, 2007, 05:51
JacobHaug's Avatar
SuperMember

SuperMember
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

hahaha...yeah last time I looked the completion date was scheduled for 2085...hopefully standards won't change at all till then...hehe
Reply With Quote
  #14 (permalink)  
Old Apr 28th, 2007, 09:14
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

I started working on it again at least! Recoded some of it today. I'm so annoyed that I have use so many <div>'s to get it to look right. And IE 5.5 SUCKS with absolute positioning inside a positioned <div>. I never knew that before I started working on this project.
Reply With Quote
  #15 (permalink)  
Old Apr 28th, 2007, 17:48
JacobHaug's Avatar
SuperMember

SuperMember
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

Yeah, well no worries just code it for Safari and Firefox. If they aren't using that they don't need to be on this private web forum...hehe
Reply With Quote
  #16 (permalink)  
Old Apr 28th, 2007, 18:11
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Design 101

Lol, touché.
Reply With Quote
Reply

Tags
design, principles

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
My Web Design Site motormaniac Free Web Site Critique 25 Nov 8th, 2007 00:19
Best Way To Design This Site PuNkKiTtYy Website Planning 2 Jul 13th, 2007 18:28
Which is the best web design site? Picard Webforumz Cafe 11 Dec 14th, 2006 13:06
[req] Free basic web templates site + button design site slorryy Web Page Design 3 Feb 17th, 2006 17:05


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


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