Site Reference Forums

You are not logged in.

#1 2007-07-10 11:35:55

designsconcept
Member
From: Malta
Registered: 2006-07-05
Posts: 46
I've been thanked 1 times.

Thank me Website
Buy me coffee

Please Review - http://www.designsconcept.com

Website for Review
http://www.designsconcept.com

Additional Comments
Hi, 

Please review when you have some time and give me any feedback/suggestions about this website.

Thank you


Thanks for reviewing,
------------------------------------------------------------------------------------------------------------------
             www.DesignsConcept.com   | You Dream - We Amuse |
------------------------------------------------------------------------------------------------------------------

Offline

 

#2 2007-07-10 12:08:47

TA
Banned
Registered: 2004-11-25
Posts: 4913
I've been thanked 39 times.

Thank me Website
Buy me candy

Re: Please Review - http://www.designsconcept.com

Not a bad-looking site, so here's my review.........

1. Your meta description is way too long -- shorten that to a simple sentence "describing" your site content and remove the "Click here to find out more."

2. On your NavMenu, remove the "01" -- "02" etc ... it looks tacky, and why would anyone want to know how they're numbered?

3. Get rid of the "larger font" and "smaller font" -- you're the Designer / Owner -- you should make all of the text font a specific size.

4. You're using CSS and Tables -- tables are for TABULAR DATA -- it's best to do Table-less CSS.

5. You didn't start the site off with the mandatory <!DOCTYPE Declaration> which has brought forth the following 51 code warnings that should be fixed...

Code:

line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 6 column 81 - Warning: unescaped & which should be written as &amp;
line 26 column 76 - Warning: '<' + '/' + letter not allowed here
line 26 column 81 - Warning: '<' + '/' + letter not allowed here
line 27 column 86 - Warning: '<' + '/' + letter not allowed here
line 27 column 91 - Warning: '<' + '/' + letter not allowed here
line 31 column 79 - Warning: '<' + '/' + letter not allowed here
line 31 column 84 - Warning: '<' + '/' + letter not allowed here
line 32 column 74 - Warning: '<' + '/' + letter not allowed here
line 32 column 79 - Warning: '<' + '/' + letter not allowed here
line 33 column 74 - Warning: '<' + '/' + letter not allowed here
line 33 column 79 - Warning: '<' + '/' + letter not allowed here
line 34 column 79 - Warning: '<' + '/' + letter not allowed here
line 34 column 84 - Warning: '<' + '/' + letter not allowed here
line 38 column 88 - Warning: '<' + '/' + letter not allowed here
line 38 column 93 - Warning: '<' + '/' + letter not allowed here
line 39 column 78 - Warning: '<' + '/' + letter not allowed here
line 39 column 83 - Warning: '<' + '/' + letter not allowed here
line 40 column 77 - Warning: '<' + '/' + letter not allowed here
line 40 column 82 - Warning: '<' + '/' + letter not allowed here
line 41 column 73 - Warning: '<' + '/' + letter not allowed here
line 41 column 78 - Warning: '<' + '/' + letter not allowed here
line 42 column 82 - Warning: '<' + '/' + letter not allowed here
line 42 column 87 - Warning: '<' + '/' + letter not allowed here
line 46 column 76 - Warning: '<' + '/' + letter not allowed here
line 46 column 81 - Warning: '<' + '/' + letter not allowed here
line 47 column 72 - Warning: '<' + '/' + letter not allowed here
line 47 column 77 - Warning: '<' + '/' + letter not allowed here
line 51 column 75 - Warning: '<' + '/' + letter not allowed here
line 51 column 80 - Warning: '<' + '/' + letter not allowed here
line 55 column 78 - Warning: '<' + '/' + letter not allowed here
line 55 column 83 - Warning: '<' + '/' + letter not allowed here
line 56 column 79 - Warning: '<' + '/' + letter not allowed here
line 56 column 84 - Warning: '<' + '/' + letter not allowed here
line 57 column 84 - Warning: '<' + '/' + letter not allowed here
line 57 column 89 - Warning: '<' + '/' + letter not allowed here
line 72 column 183 - Warning: '<' + '/' + letter not allowed here
line 193 column 3 - Warning: <body> attribute "," lacks value
line 222 column 31 - Warning: <table> unexpected or duplicate quote mark
line 280 column 4 - Warning: '<' + '/' + letter not allowed here
line 280 column 11 - Warning: '<' + '/' + letter not allowed here
line 325 column 33 - Warning: <embed> is not approved by W3C
line 325 column 244 - Warning: discarding unexpected </embed>
line 193 column 3 - Warning: <body> proprietary attribute "topmargin"
line 195 column 13 - Warning: <script> inserting "type" attribute
line 216 column 25 - Warning: <table> proprietary attribute "background"
line 218 column 29 - Warning: <td> proprietary attribute "background"
line 221 column 29 - Warning: <td> proprietary attribute "background"
line 222 column 31 - Warning: <table> proprietary attribute "background"
line 249 column 7 - Warning: <script> inserting "type" attribute
line 334 column 33 - Warning: <div> anchor "div1" already defined

Offline

 

#3 2007-07-10 13:57:58

designsconcept
Member
From: Malta
Registered: 2006-07-05
Posts: 46
I've been thanked 1 times.

Thank me Website
Buy me coffee

Re: Please Review - http://www.designsconcept.com

Thanks TA for replying. 

Ive removed the numbers, shortened the meta tag description and added the <!Doctype..> tag.  I will do the others later.   

Thanks for you comments and feedback!

[url removed please add it to your signature under your profile]

Last edited by ColoEagle (2007-07-10 20:10:46)


Thanks for reviewing,
------------------------------------------------------------------------------------------------------------------
             www.DesignsConcept.com   | You Dream - We Amuse |
------------------------------------------------------------------------------------------------------------------

Offline

 

#4 2007-07-10 15:18:22

TA
Banned
Registered: 2004-11-25
Posts: 4913
I've been thanked 39 times.

Thank me Website
Buy me candy

Re: Please Review - http://www.designsconcept.com

You're welcome -- by going the way of XHTML, you now have 86 code warnings ... the reason is you haven't coded all of your HTML syntax properly for the Doctype declaration, meaning at the end of your lines of HTML code, you need to put a space and backlash like this ...

With XHTML, it should be written like this ...
<link href="stylecss.css" type="text/css" rel="stylesheet" />

Currently, this line of code shows up like this --
<link href="stylecss.css" type="text/css" rel="stylesheet">

Offline

 

#5 2007-07-11 03:05:12

designsconcept
Member
From: Malta
Registered: 2006-07-05
Posts: 46
I've been thanked 1 times.

Thank me Website
Buy me coffee

Re: Please Review - http://www.designsconcept.com

Thanks vmuch mate!  I will fix those soon. 

Anyone has other ideas?  Come on write your review!


Thanks for reviewing,
------------------------------------------------------------------------------------------------------------------
             www.DesignsConcept.com   | You Dream - We Amuse |
------------------------------------------------------------------------------------------------------------------

Offline

 

#6 2007-07-14 06:18:20

designsconcept
Member
From: Malta
Registered: 2006-07-05
Posts: 46
I've been thanked 1 times.

Thank me Website
Buy me coffee

Re: Please Review - http://www.designsconcept.com

I would be really pleased if I get more feedback!


Thanks for reviewing,
------------------------------------------------------------------------------------------------------------------
             www.DesignsConcept.com   | You Dream - We Amuse |
------------------------------------------------------------------------------------------------------------------

Offline

 

#7 2007-07-14 17:46:06

tonisz
Member
From: Canada
Registered: 2007-07-14
Posts: 10
I've been thanked 0 times.

Thank me Website

Re: Please Review - http://www.designsconcept.com

Not bad at all! Your site looks great, I like the menus and the layout. Navigation is easy and the pages are loading pretty fast. You need more content though... [ URL edited out by TA ]. Good luck!

Offline

 

#8 2007-07-15 05:44:29

designsconcept
Member
From: Malta
Registered: 2006-07-05
Posts: 46
I've been thanked 1 times.

Thank me Website
Buy me coffee

Re: Please Review - http://www.designsconcept.com

tonisz wrote:

Not bad at all! Your site looks great, I like the menus and the layout. Navigation is easy and the pages are loading pretty fast. You need more content though... [ URL edited out by TA ]. Good luck!

Thanks Tonisz!!

[what does "[ URL edited out by TA ]." mean??]

Last edited by designsconcept (2007-07-15 05:57:36)


Thanks for reviewing,
------------------------------------------------------------------------------------------------------------------
             www.DesignsConcept.com   | You Dream - We Amuse |
------------------------------------------------------------------------------------------------------------------

Offline

 

#9 2007-07-15 08:56:35

TA
Banned
Registered: 2004-11-25
Posts: 4913
I've been thanked 39 times.

Thank me Website
Buy me candy

Re: Please Review - http://www.designsconcept.com

designsconcept wrote:

tonisz wrote:

Not bad at all! Your site looks great, I like the menus and the layout. Navigation is easy and the pages are loading pretty fast. You need more content though... [ URL edited out by TA ]. Good luck!

Thanks Tonisz!!

[what does "[ URL edited out by TA ]." mean??]

It means I deleted a link to a URL that was posted leading to one of his sites that are in his signature.

Offline

 

#10 2007-07-15 10:49:19

designsconcept
Member
From: Malta
Registered: 2006-07-05
Posts: 46
I've been thanked 1 times.

Thank me Website
Buy me coffee

Re: Please Review - http://www.designsconcept.com

Ok TA.  Thanks for replying


Thanks for reviewing,
------------------------------------------------------------------------------------------------------------------
             www.DesignsConcept.com   | You Dream - We Amuse |
------------------------------------------------------------------------------------------------------------------

Offline

 

#11 2007-07-16 03:38:11

designsconcept
Member
From: Malta
Registered: 2006-07-05
Posts: 46
I've been thanked 1 times.

Thank me Website
Buy me coffee

Re: Please Review - http://www.designsconcept.com

Anymore reviews?  Come on....  I like both feedback / suggestions / complaints!


Thanks for reviewing,
------------------------------------------------------------------------------------------------------------------
             www.DesignsConcept.com   | You Dream - We Amuse |
------------------------------------------------------------------------------------------------------------------

Offline

 

#12 2007-07-16 12:47:41

designsconcept
Member
From: Malta
Registered: 2006-07-05
Posts: 46
I've been thanked 1 times.

Thank me Website
Buy me coffee

Re: Please Review - http://www.designsconcept.com

TA, earlier you told me about making Table-less CSS.

Can you tell me where can i find some help about this??

Thanks mate.


Thanks for reviewing,
------------------------------------------------------------------------------------------------------------------
             www.DesignsConcept.com   | You Dream - We Amuse |
------------------------------------------------------------------------------------------------------------------

Offline

 

#13 2007-07-16 13:20:37

ColoEagle
Administrator
From: Colorado, USA
Registered: 2006-02-15
Posts: 2125
I've been thanked 86 times.

Thank me Website
Buy me candy

Re: Please Review - http://www.designsconcept.com

I give you a tummenupp to your site.

A nice simple layout that works and looks good.

The best way to find info on going to a table-less design is to do a search. There are a lot of sites with information and templates out there.

If you are completely new to using CSS for layout and design you may want to review the w3c css school http://www.w3schools.com/css/


The only way to discover the limits of the possible is to go beyond them into the impossible
Attention designers and webmasters - "The Beauty of CSS"
Valid Web Designs tutorials on HTML, XHTML and CSS
Home Security Systems

Offline

 

#14 2007-07-17 02:30:06

designsconcept
Member
From: Malta
Registered: 2006-07-05
Posts: 46
I've been thanked 1 times.

Thank me Website
Buy me coffee

Re: Please Review - http://www.designsconcept.com

Hi ColoEagle!


Thanks for your review and comments.  I will check the W3C review soon


Thanks for reviewing,
------------------------------------------------------------------------------------------------------------------
             www.DesignsConcept.com   | You Dream - We Amuse |
------------------------------------------------------------------------------------------------------------------

Offline

 

#15 2007-07-20 07:48:11

designsconcept
Member
From: Malta
Registered: 2006-07-05
Posts: 46
I've been thanked 1 times.

Thank me Website
Buy me coffee

Re: Please Review - http://www.designsconcept.com

First of all I would like to thank very much ColoEagle for the help he gave me. 

Secondly, again, I would like to invite more participants of this forum to review my site.  I am open to both constructive and destructive criticism so do not worry!!


Regards
Patrick


Thanks for reviewing,
------------------------------------------------------------------------------------------------------------------
             www.DesignsConcept.com   | You Dream - We Amuse |
------------------------------------------------------------------------------------------------------------------

Offline

 
Never
Sponsored Results


Board footer

Powered by PunBB
© Copyright 2002–2008 Rickard Andersson