Website Critiques
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsWeb DesignWebsite Critiques

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old May 2nd, 2005, 07:54 AM
chriswiggins01 chriswiggins01 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Location: Worcester, UK
Posts: 52 chriswiggins01 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 18 h 39 m 39 sec
Reputation Power: 5
Question http://www.chriswiggins.net/comp3001/

Hi all,

The website URL below, is an academic assignment for university. I would grately appreciate any feedback on any element of the design or functionality.

http://www.chriswiggins.net/comp3001/

Cheers guys

Reply With Quote
  #2  
Old May 2nd, 2005, 07:56 AM
computer's Avatar
computer computer is offline
echo $usertitle['computer'];
Dev Shed God 4th Plane (6500 - 6999 posts)
 
Join Date: Jan 2003
Location: UK
Posts: 6,676 computer User rank is Captain (20000 - 30000 Reputation Level)computer User rank is Captain (20000 - 30000 Reputation Level)computer User rank is Captain (20000 - 30000 Reputation Level)computer User rank is Captain (20000 - 30000 Reputation Level)computer User rank is Captain (20000 - 30000 Reputation Level)computer User rank is Captain (20000 - 30000 Reputation Level)computer User rank is Captain (20000 - 30000 Reputation Level)computer User rank is Captain (20000 - 30000 Reputation Level)computer User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 4 Weeks 9 h 36 m 29 sec
Reputation Power: 219
Send a message via ICQ to computer
"Any comments on this please..." is an unacceptable thread title. It has been changed to "http://www.chriswiggins.net/comp3001/". Thank you.
__________________

Reply With Quote
  #3  
Old May 2nd, 2005, 07:59 AM
chriswiggins01 chriswiggins01 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Location: Worcester, UK
Posts: 52 chriswiggins01 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 18 h 39 m 39 sec
Reputation Power: 5
Sorry, I forgot to read the sticky

Quote:
Originally Posted by computer
"Any comments on this please..." is an unacceptable thread title. It has been changed to "http://www.chriswiggins.net/comp3001/". Thank you.


sorry guys, didn't read the stick. i know I should have. Do apologise

Reply With Quote
  #4  
Old May 2nd, 2005, 09:06 AM
NotGoddess's Avatar
NotGoddess NotGoddess is offline
Kung-fu Kitty
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2004
Posts: 350 NotGoddess User rank is Sergeant (500 - 2000 Reputation Level)NotGoddess User rank is Sergeant (500 - 2000 Reputation Level)NotGoddess User rank is Sergeant (500 - 2000 Reputation Level)NotGoddess User rank is Sergeant (500 - 2000 Reputation Level)NotGoddess User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 4 Days 6 h 9 m 2 sec
Reputation Power: 10
Send a message via AIM to NotGoddess
Hi Chris, I'll give my comments in 2 parts, structure (markup), and layout (appearance). First I will say it is a nice initial layout-just needs some adjustment.

Structure:
Most importantly, you need a proper doctype. A page without one is thrown into quirks mode in most browsers and you'll never be sure how it's going to be rendered. I advise going with a strict one (html 4.01 or xhtml 1.0) unless you require a tag that's not allowed, then use the loose dtd.

Javascript menus are neat, but not that accessible. But you do have the primary page links hard-coded, so a point for you.

Your source is a bit hard to read...the lines seem to start in the middle of the page.

Another point for you-at first it looked like you were using tables for layout, but it appears it's only the sidebar. You don't even need one there-you can list those in a <ul> and use css to style (it wouldn't even need that much).

Layout:
If you make a fixed-width site, it's usually common to either left-align or center. The way your site appears in 1024x768 is odd-a little spacing on the left and a LOT on the right. To center the 'page' add 'text-align:center;' to your body style and text-align:left; margin-left:auto; margin-right:auto;' to your .main style.

The background color is a nice impact but the page has nothing to make it stand out. A few ideas: take the background of .main down a few notches (try #EFFBFF) to provide a subtle contrast of the menu/content that stay full white (or fefefe, my fave color )

The borders are a good start, but they also emphasize the variance in space between the blocks. They don't need to be uniform but they should look intentional. Try making the gap below the 'shopping cart' block the same as the gap between sidebar & content.



Hope this review helps.
NotGoddess
Comments on this post
dunc2die4 agrees: Some very good advice ;-)
funkyfoof agrees!
wizzyman agrees: Good stuff
__________________
If your question has been answered, please finish out your thread with a post on what worked. It helps future people searching for answers and doesn't leave those helping you wondering.

Did I help? Consider adding to my reputation (Click on the above).
You ended that sentence with a preposition!

Reply With Quote
  #5  
Old May 2nd, 2005, 01:14 PM
dunc2die4 dunc2die4 is offline
Absolute beginner!
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Location: LONDON :: UK
Posts: 156 dunc2die4 User rank is Lance Corporal (50 - 100 Reputation Level)dunc2die4 User rank is Lance Corporal (50 - 100 Reputation Level)dunc2die4 User rank is Lance Corporal (50 - 100 Reputation Level) 
Time spent in forums: 1 Day 16 h 27 m 4 sec
Reputation Power: 5
Some excellent advice from NotGoddess, you should take it onboard.

In addition, there appears to be a lot of whitespace at the bottom of some of your pages; including the homepage.

You should sort that out.

Good to see that you are using a feedback form and that you've included form validation
I would recommend using server-side validation as opposed to client side (javascript) as a lot of people have javascript turned off. Server-side validation is not much more difficult.

Your thumbnails are not actual thumbnails I suspect (many are 50+ KB) You are probably displaying the original images, only smaller. As you are using dynamic content, try using GD or ImageMagik to create thumbnails (lots of tuts online <google it>). This will enable your pages to load quickly (particularly for dial-up users).

Hope these comments help,
Good luck,
Duncan

Reply With Quote
  #6  
Old May 5th, 2005, 01:33 PM
chriswiggins01 chriswiggins01 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Location: Worcester, UK
Posts: 52 chriswiggins01 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 18 h 39 m 39 sec
Reputation Power: 5
Thanks...

Thanks for the suggestions,


its too late for some of them (had to hand it in today) but I managed to address some of the issues raised.

Thanks again

Chris

Reply With Quote
  #7  
Old May 5th, 2005, 02:03 PM
slstsang slstsang is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2005
Location: Melbourne Florida
Posts: 9 slstsang User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 28 m 2 sec
Reputation Power: 0
Send a message via ICQ to slstsang Send a message via MSN to slstsang
the navigation on the left hand column are nice, but you want the users to read the text as well, black color text is great, but it blends in too much with the pics, so you might wasnt to modify it like, giving it a shawdow, blur background...etc.

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignWebsite Critiques > http://www.chriswiggins.net/comp3001/


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway
Stay green...Green IT