Jump to content

Website opinions


jeeves245

Recommended Posts

I know you said opinions about the layout, but I am wondering about this: "I have had a lot of experience with [...] web development (HTML, PHP and SQL)"... you clearly don't, you even admitted "I'm not a pro or anything so i've just used a WYSIWYG editor".

 

The general layout (with the correct design) would be ok I guess, but your design doesn't do it any favours.

 

Other things I have noticed:

 

- Don't bother telling the user what browser / screen resolution to use, they won't change because you say so.

- The image on the homepage is way too cheesy, it doesn't portray a professional image.

- I cannot click the links in the footer on your homepage... ironic as I am using Chrome ;)

 

 

I guess how much effort you put into this should be proportional to the seriousness of your business, if it is a hobby to earn a couple $$$ then fine, if this is your main income you should probably hire someone to do it for you.

 

ILMV

Link to comment
Share on other sites

it may just be "my lack of exp with php" but you sir did not hit my site with chrome, i dont have a footer. and no i dont use any sql, i prefer to use flatfiles.  im curious exactly what site wer you looking at becuse it wasnt mine. the only hit ive had from this site was ubntu intrepid and firefox at the time of this reply.

 

I know you said opinions about the layout, but I am wondering about this: "I have had a lot of experience with [...] web development (HTML, PHP and SQL)"... you clearly don't, you even admitted "I'm not a pro or anything so i've just used a WYSIWYG editor".

 

The general layout (with the correct design) would be ok I guess, but your design doesn't do it any favours.

 

Other things I have noticed:

 

- Don't bother telling the user what browser / screen resolution to use, they won't change because you say so.

- The image on the homepage is way too cheesy, it doesn't portray a professional image.

- I cannot click the links in the footer on your homepage... ironic as I am using Chrome ;)

 

 

I guess how much effort you put into this should be proportional to the seriousness of your business, if it is a hobby to earn a couple $$$ then fine, if this is your main income you should probably hire someone to do it for you.

 

ILMV

Link to comment
Share on other sites

using <style> twice in the head is going to cause problems in rendering. the main content area cuts off. i also cannot click the links at bottom. i have seen this type of thing before caused by things learned in design classes. sometimes what works in the book doesnt work in practice.

Link to comment
Share on other sites

I know you said opinions about the layout, but I am wondering about this: "I have had a lot of experience with [...] web development (HTML, PHP and SQL)"... you clearly don't, you even admitted "I'm not a pro or anything so i've just used a WYSIWYG editor".

 

I have had a lot of experience with the above but i'm absolutely useless at design so I just use a WYSIWYG editor for any kind of front end work.

 

Thanks for the comments.

 

 

Link to comment
Share on other sites

No worries. I know a lot of other people have the same problem. Writing code is one thing but designing decent graphics and a nice layout is another thing all together  :shrug:

 

Dorky - thanks for the comment. As I said, I used a WYSIWYG editor so the extra style tag was created by the editor itself. Do you think it'd be a good idea to manually take it out?

 

 

Link to comment
Share on other sites

i would put it all in the one style tag and move all the inline styles to the style tag in the head. i also see a lot of code that doesnt need to be there. you can control almost anything by giving it a class. for ex <p class='  and that would cut down on all the extra html. and just put the class control in the style tag in the head as well.

Link to comment
Share on other sites

Your CSS and JavaScript should be in external files anyways.

 

    <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />

 

Use that code to reference a .css document you place in a folder called CSS. Switch over to code view and copy all your CSS tags into a single external one. Its going to help with loading times and prevent any weird problems that might come up with multiple <style>s.

 

 

The JavaScript should be separate too probably. Same thing as before, place all the code inside the <script language="JavaScript1.4" type="text/javascript"> into an external .js file. Then make sure you reference it in your code.

 

    <script type="text/javascript" src="scripts/ca_signup.js"></script>

 

 

Having external files for JavaScript and CSS will prevent the browser from having to download EVERYTHING each time a user views a page.

 

Hope this all makes sense.

Link to comment
Share on other sites

I will give my opinion for what its worth, please dont take it personal, but to me first impressions are that it is just another website, nothing more, nothing less!

"They" say (whoever they are) that you have approx 7 seconds to get a users attention to make them stick on your site, well it took longer than 7 seconds for the images to download!

Maybe your server is under load at the moment or somthing, but i wouldnt be happy with that preformance.

Apart from that, yep its an ok site.

Link to comment
Share on other sites

Your CSS and JavaScript should be in external files anyways.

 

    <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />

 

Use that code to reference a .css document you place in a folder called CSS. Switch over to code view and copy all your CSS tags into a single external one. Its going to help with loading times and prevent any weird problems that might come up with multiple <style>s.

 

 

The JavaScript should be separate too probably. Same thing as before, place all the code inside the <script language="JavaScript1.4" type="text/javascript"> into an external .js file. Then make sure you reference it in your code.

 

    <script type="text/javascript" src="scripts/ca_signup.js"></script>

 

 

Having external files for JavaScript and CSS will prevent the browser from having to download EVERYTHING each time a user views a page.

 

Hope this all makes sense.

 

So I did all that. It all works fine when I view the website on my local computer.. but as soon as I upload it to my host, the CSS isn't loading properly and the fonts/sizes etc are all wrong.

 

Do I need to reference the CSS and javascript files in a different way? At the moment I have them in CSS and scripts folders like you said.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.