[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Web Design Reviews

Web Design Reviews Showcase your designs and request reviews and feedback.


Closed Thread
 
LinkBack Thread Tools
Old 05-14-2007, 01:45 PM   #1 (permalink)
Barru.
 
Barrucadu's Avatar
 
Join Date: Aug 2005
Location: East Yorkshire, England
Posts: 2,731
78.50 NP$ (Donate)

Barrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to behold


My latest Waste of Webspace

An attempt at a personal site. yes I KNOW the padding on the right side is wrong. If anyone can think of why, i'd be grateful.

http://me.yarrt.com

Last edited by Mikor; 05-14-2007 at 01:58 PM.
Barrucadu is offline  
Old 05-14-2007, 02:47 PM   #2 (permalink)
NamePros Expert
 
Mike's Avatar
 
Join Date: May 2005
Location: www.chrome.us
Posts: 5,245
46.20 NP$ (Donate)

Mike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond repute

Help The Homeless - Holiday 2009 Help The Homeless - Holiday 2009 Help The Homeless - Holiday 2009 Help The Homeless - Holiday 2009
Simple, straight forward, but could need some "action". It's too plain to be attractive, also, if you've done coding work, display the sites you've worked for. If a client comes along, they like to see the functionality of your work, not just a mention.
In terms of design, i'd reduce the width of the screen and place the content in the center.

Other than that, i like the subtle coloring, it's not screaming. Again, even though the colors aren't screaming, you still needed some action going on, it would help.
__________________
Do you Chrome? [|] Noomle No fees & More Revenue
IntelBank.com<<Your Business & Your Money>>CreditHelp.TV
American Pilot Center <- Learn to Fly -> PilotCenter
Mike is offline  
Old 05-14-2007, 05:27 PM   #3 (permalink)
NamePros Member
 
Join Date: Jun 2005
Location: New Zealand
Posts: 95
13.00 NP$ (Donate)

music_man is on a distinguished road


Hi.

Nice simple and easy-to-use layout. Are you sure you want that background gradient to stop so short? On your contact page you may want to spam-protect your email address. Also, are you sure you want underlines for the headings? I like how you use <h1> tags - good for SEO. You could also add the "title" tag to links.

Just a little thing on your Standards page:

Code:
if($foo == 'bar'){
...
	mysql_query('update foobarbaz set foo = foo + 1 where bar = "baz"')or die(mysql_error());
In your update you forgot to make the foo a variable ($foo).

I do queries like this
Code:
$var = "Hi";
$id = "1";
$dbc = mysql_connect("localhost","user","pass")or die(mysql_error());
$db = mysql_select_db("db");
$e1 = "UPDATE table SET var='$var' WHERE id='$id'";
$e2 = mysql_query($e1,$dbc);
But each to their own Anyway, your website is nice and valid with good code. It's heartening to see other people code to standards!
__________________
Self-service
My homepage
music_man is offline  
Old 05-14-2007, 11:35 PM   #4 (permalink)
Barru.
 
Barrucadu's Avatar
 
Join Date: Aug 2005
Location: East Yorkshire, England
Posts: 2,731
78.50 NP$ (Donate)

Barrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to behold


Quote:
Originally Posted by music_man
In your update you forgot to make the foo a variable ($foo).
Actually
PHP Code:
if($foo == 'bar'){
...
    
mysql_query('update foobarbaz set foo = foo + 1 where bar = "baz"')or die(mysql_error());
is perfectly valid code, if the variable $foo is equal to "bar", update the numerical field named "foo" by one in the table "foobarbaz" where "bar" is equal to "baz"

I've reduced the width of the page, added title="" for links, made the banner image a link to the homepage and removed underlines on headers. I'll work on the background image and a focal point after school.

Last edited by Mikor; 05-14-2007 at 11:57 PM.
Barrucadu is offline  
Old 05-14-2007, 11:40 PM   #5 (permalink)
NamePros Member
 
Join Date: Jun 2005
Location: New Zealand
Posts: 95
13.00 NP$ (Donate)

music_man is on a distinguished road


True. My bad!
__________________
Self-service
My homepage
music_man is offline  
Old 05-15-2007, 09:47 AM   #6 (permalink)
Barru.
 
Barrucadu's Avatar
 
Join Date: Aug 2005
Location: East Yorkshire, England
Posts: 2,731
78.50 NP$ (Donate)

Barrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to behold


Changed the background image and banner now.
Barrucadu is offline  
Old 05-15-2007, 04:52 PM   #7 (permalink)
NamePros Member
 
Join Date: Jun 2005
Location: New Zealand
Posts: 95
13.00 NP$ (Donate)

music_man is on a distinguished road


That looks great now!
__________________
Self-service
My homepage
music_man is offline  
Old 05-17-2007, 08:59 AM   #8 (permalink)
Barru.
 
Barrucadu's Avatar
 
Join Date: Aug 2005
Location: East Yorkshire, England
Posts: 2,731
78.50 NP$ (Donate)

Barrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to behold


I've changed it a bit. Now the navigation bar is horizontal, under the banner. The code on the standards page is in a box, and tables have a 100% width.

Edit: I have just changed the banner image, making it brighter and the reflection slightly more visible.

Last edited by Mikor; 05-17-2007 at 10:07 AM.
Barrucadu is offline  
Old 05-18-2007, 01:10 PM   #9 (permalink)
Barru.
 
Barrucadu's Avatar
 
Join Date: Aug 2005
Location: East Yorkshire, England
Posts: 2,731
78.50 NP$ (Donate)

Barrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to behold


*final bump before thread dies*

Any more opinions?
Barrucadu is offline  
Old 05-18-2007, 02:18 PM   #10 (permalink)
NamePros Regular
 
Alex.'s Avatar
 
Join Date: Nov 2006
Location: Uk
Posts: 601
133.80 NP$ (Donate)

Alex. is on a distinguished road

Ethan Allen Fund Third World Education
On your outbound links, I'd put target="_blank" so that people can still say on your site when navigating away.

The design looks quite interesting very minimalist, I like what you've done with the tables.

A side note off the design aspect: do you really think its wise linking to a site that has your dad's mobile number?? There are a lot of evil people out there, I'd suggest not tempting them.

Otherwise, very very nice
__________________
_\|/_ _\|/_ _\|/_ _\|/_ _\|/_ :confused:
Alex. is offline  
Old 05-18-2007, 02:49 PM   #11 (permalink)
Barru.
 
Barrucadu's Avatar
 
Join Date: Aug 2005
Location: East Yorkshire, England
Posts: 2,731
78.50 NP$ (Donate)

Barrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to behold


Quote:
Originally Posted by manofgames
On your outbound links, I'd put target="_blank" so that people can still say on your site when navigating away.
Done!

Quote:
Originally Posted by manofgames
A side note off the design aspect: do you really think its wise linking to a site that has your dad's mobile number?? There are a lot of evil people out there, I'd suggest not tempting them.
He asked me to put the number there to make it easier for potential employers to contact him, and he can ring me up (or email me) and get it removed in minutes if he wants to.
Barrucadu is offline  
Old 05-18-2007, 03:20 PM   #12 (permalink)
NamePros Regular
 
Alex.'s Avatar
 
Join Date: Nov 2006
Location: Uk
Posts: 601
133.80 NP$ (Donate)

Alex. is on a distinguished road

Ethan Allen Fund Third World Education
I understand that, im just suggesting that your giving out a heck of a lot of personal information, which could be used against you.

Also, I'd suggest that employers might not be interested in which primary school you went to etc.

Just my 2C.
__________________
_\|/_ _\|/_ _\|/_ _\|/_ _\|/_ :confused:
Alex. is offline  
Old 05-18-2007, 03:30 PM   #13 (permalink)
Barru.
 
Barrucadu's Avatar
 
Join Date: Aug 2005
Location: East Yorkshire, England
Posts: 2,731
78.50 NP$ (Donate)

Barrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to behold


Quote:
Originally Posted by manofgames
Also, I'd suggest that employers might not be interested in which primary school you went to etc.
Could be, you never know =P
It's not just a business site, its a personal site (hence the informality of it all and the latin quote on the index page)
Barrucadu is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 07:03 AM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85