TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 07-19-2009, 08:26 PM   #1 (permalink)
The Visitor
 
HERATHEIM's Avatar
 
Join Date: Jul 2009
Posts: 4
Thanks: 0
HERATHEIM is on a distinguished road
Default Heratheim Works

I have released 3rd edition of my website.... hope you like it.
I could use any tips,help, bug finding and etc.. in order to improve it....

http://www.heratheimworks.ath.cx
HERATHEIM is offline  
Reply With Quote
Old 07-22-2009, 02:06 PM   #2 (permalink)
Jim
The Addict
 
Jim's Avatar
 
Join Date: Nov 2007
Location: the Netherlands
Posts: 281
Thanks: 2
Jim is on a distinguished road
Default

I like the 2003'ish design. :P

But i recommend to use a bit less grey. Grey is a color that always fits with any other color, but it's also a pretty boring color. Get another color to make the greyish break.

Take TalkPHP for example, a lot of grey is used here. But because they use orange it looks a lot better. Imagine the orange gone and you'll understand what im saying :)
__________________
Nunchaku! Who doesn't like martial arts? =)
Send a message via MSN to Jim Send a message via Skype™ to Jim
Jim is offline  
Reply With Quote
Old 08-07-2009, 04:59 PM   #3 (permalink)
The Visitor
 
HERATHEIM's Avatar
 
Join Date: Jul 2009
Posts: 4
Thanks: 0
HERATHEIM is on a distinguished road
Default

No more replies?
__________________
My Website: www.heratheimworks.ath.cx
HERATHEIM is offline  
Reply With Quote
Old 08-07-2009, 06:52 PM   #4 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

Get rid of the flash navigation, it's bad for SEO and I can't see the URL I'm going to visit before I click the button!
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 08-08-2009, 04:56 PM   #5 (permalink)
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Your site is failing to load so I cannot give you comments.
__________________
My Site
adamdecaf is offline  
Reply With Quote
Old 08-08-2009, 09:06 PM   #6 (permalink)
The Visitor
 
HERATHEIM's Avatar
 
Join Date: Jul 2009
Posts: 4
Thanks: 0
HERATHEIM is on a distinguished road
Default

yeah, i had some problems... now it's ok... tell me what you think
__________________
My Website: www.heratheimworks.ath.cx
HERATHEIM is offline  
Reply With Quote
Old 08-09-2009, 12:43 AM   #7 (permalink)
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

  1. Flash is bad, it doesn't work for text readers/mobile browsers. (A mobile site would suffice for the later).
  2. The overall site load is pretty slow:
    1. gzip the files
    2. Use CSS sprites, compress images.
  3. Do [black, gray, white, lime, orange, [dark blue, light blue]] really go with each other? I wonder how it would look with out the green (orange and blue match very well).
  4. Is the comment form really a PM box that is linked with the forum? If so it is really nice.
  5. The text seems just a tad small and the font-face could be changed.
  6. Your Google Analytics code should really go on the bottom (just before the end of </body>, Page on why it will also speed up the page load.
  7. Tables? Maybe try using <div>'s?
  8. You seem to have a LOT of [IF IE x] conditional statements, this will slow page rendering. I would recommend JavaScript or PHP selective parsing. (Use JS or PHP to print/do specific things based on the browser, they are faster.)
  9. You're using HTML elements that are:
    1. Going to be deprecated in HTML5 (<font>).
    2. Can be replaced with <span>'s and CSS.
  10. Oh, you don't have a doctype.
  11. Always, Always fill in the alt="" attributes, they are used by screen readers or if your images go offline/[server, client] can't load them.

Overall: 6.5/10
You clearly have a grasp on what you've done, it seems that you are just a little behind in the current technologies (5,6,7[,8],9[,11]). The site is NOT bad, I just think it could be modified a little.

My $0.02.
- Adam

*EDIT* Formatting issues.
__________________
My Site
adamdecaf is offline  
Reply With Quote
Old 08-09-2009, 01:14 PM   #8 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

Quote:
The overall site load is pretty slow
Actually the site loaded pretty quickly for me and I'm on dial-up. This could however be partially because the flash is already in my cache.

Quote:
You seem to have a LOT of [IF IE x] conditional statements, this will slow page rendering. I would recommend JavaScript or PHP selective parsing. (Use JS or PHP to print/do specific things based on the browser, they are faster.)
I disagree with this, I think that using the [IF IE x] statements is much more reliable than the javascript or php alternatives. However, you could get rid of them completely if you removed the flash banner and navigation.
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 08-09-2009, 03:18 PM   #9 (permalink)
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

Quote:
Originally Posted by ETbyrne View Post
Actually the site loaded pretty quickly for me and I'm on dial-up. This could however be partially because the flash is already in my cache.



I disagree with this, I think that using the [IF IE x] statements is much more reliable than the javascript or php alternatives. However, you could get rid of them completely if you removed the flash banner and navigation.
Yea I disagree with that last comment, I do however agree with the flash comments.
Although it is possible to make seo friendly flash it is however a nightmare for accessibility.
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
sketchMedia is offline  
Reply With Quote
Old 08-09-2009, 07:04 PM   #10 (permalink)
The Visitor
 
HERATHEIM's Avatar
 
Join Date: Jul 2009
Posts: 4
Thanks: 0
HERATHEIM is on a distinguished road
Default

Thanks for comments... if some one can explain me the problems of flash and seo
__________________
My Website: www.heratheimworks.ath.cx
HERATHEIM is offline  
Reply With Quote
Old 08-09-2009, 07:14 PM   #11 (permalink)
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Quote:
Originally Posted by HERATHEIM View Post
Thanks for comments... if some one can explain me the problems of flash and seo
Site crawlers only read text, so if you have a menu in HTML:
HTML Code:
<nav>
 <a href="/">Home</a>
 <a href="/about">About</a>
</nav>
The crawler can read and access those links. If your nav is hidden in flash all it sees is a .swf file, so it will ignore it and move down the page. For all it knows the .swf could be a movie, nav, blank, game, ect...

Plus flash is [slow, clunky, requires plugins, crap]. Most users don't like flash, they prefer Ajax. (But only if it is on things like forms or tabs.
__________________
My Site
adamdecaf is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Who works as a Web Developer? CMellor The Lounge 14 07-06-2012 01:19 PM
Sound only works in Internet Explorer ebuoe Javascript, AJAX, E4X 0 06-02-2009 02:30 PM
Getting Error: is not a function when viewed in firefox - works in IE almac007 Javascript, AJAX, E4X 9 12-05-2008 09:27 AM
Script works and does what I want, but timeouts j4v1 General 1 06-04-2008 07:42 PM
Uploading images works for me but not others Orc General 13 02-15-2008 11:24 PM


All times are GMT. The time now is 05:08 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design