Search results

  1. H

    Why is this web site not available by mobile device?

    My guess would be that table layouts don't work on whatever mobile device you're testing it on.
  2. H

    Layout Problems (Div beginner)

    Alright for this you'll have to put your entire page in a wrapper div. The HTML should look something like. <body> <div id="page_wrapper">SITE CONTENT GOES HERE.</div> </body> And your CSS is going to look like #page_wrapper { width:300px; margin-left: auto; margin-right: auto; } You...
  3. H

    Free html editor with syntax highlighting?

    Another great feature in Notepad++ is that you can changed the syntax colors to whatever you want. I use a dark theme with a nice clear font that makes coding much easier on the eyes.
  4. H

    Can you please help determine why this web site is slow?

    Sounds like a server problem if / doesn't load but /index.html does.
  5. H

    JakeBoyles.com Re-Design

    Looks good but the wood at the top seems really fake looking.
  6. H

    Free html editor with syntax highlighting?

    Notepad++ is probably the best HTML editor there is for windows. http://notepad-plus.sourceforge.net/uk/site.htm
  7. H

    Please, critique my design - newbie

    Looks pretty good for a newbie. I don't like the colors much though. Code it up so we can see it with content and images, maybe the colors will look better with images.
  8. H

    feedback on www.wildcoastholidays.com please

    Use text for the navigation instead of images. Search engines like plain text the best. Also I would stay away from frames.
  9. H

    My Portfolio Website.

    Here is my temporary portfolio website until I have time to create a full one with blog and such. Any comments/criticisms would be appreciated. I know some of the header text and checkmarks are jagged. I haven't had time to fix them yet. And the empty space in the top right is where the nav...
  10. H

    www.scientia-studio.com

    You have far too many things loading, took a good 30 seconds for the site to actually appear on my 6meg connection.
  11. H

    Newbie Web Designer's First Web Site

    Glad to see you're using CSS, a lot of people try to get away with using just tables. Having said that, make sure your site has both valid CSS and XHTML. You can check at http://jigsaw.w3.org/css-validator/ for CSS and http://validator.w3.org/ for HTML. Now your actual design isn't too bad, I...
  12. H

    Critique New Merchant Site

    Needs more text and less images. People should know what they're clicking, I don't want to click each gem to find out where it takes me. I want to be able to read the link and see if thats the page I want to go to.
  13. H

    The most versatile layout (beginner)

    I would say a fixed width layout 776px wide. After you have the layout you can test it in almost every browser imaginable at http://browsershots.org/.
  14. H

    How hard is it to make a Myspace/Ebay esque site?

    A good resource for learning pretty much any web language is http://www.w3schools.com/
  15. H

    Need help with my site.

    Start out by learning HTML and CSS. When you have a good grasp of both of those move on to PHP for all your user registration and file uploading. Start with the links below. XHTML Tutorial CSS Tutorial Once you have built a few sites with those you can move on to more advanced stuff...
  16. H

    Table website layout dissapearing?

    You should NEVER use tables for a website layout. Tables were created to be used to hold only tabular data. Use XHTML and CSS.
  17. H

    How hard is it to make a Myspace/Ebay esque site?

    If you are even thinking of using frontpage you aren't ready to take on a project of this size. Spend some time making some smaller scripts with XHTML, CSS and PHP until you get the hang of all 3 of them. Until then you aren't ready to take on a project like what you're describing.
Top