Search results

  1. freecrm

    Help Tabled navigation moves

    Seems to take forever to load - gave up - sorry.
  2. freecrm

    Dreamweaver CS3 Image: Navigation Bar Help

    I'm not completely clear on what we are working with so its difficult to comment. However, it is possible that your images have a css instruction (float: left). Now Internet Explorer and Firfox interpret elements differently - Firefox tending to be more specific. As an example, if your...
  3. freecrm

    css suggestions?

    Thanks for the feedback - working on it now...
  4. freecrm

    css suggestions?

    I had been contemplating using a 2 column design but this makes horizontal auto-stretch tricky for all browsers. I think I'll add another column and make the wrapper fixed width with auto margins left and right. The only reason I hadn't made it multi-column is that the site revolves around...
  5. freecrm

    css suggestions?

    I know the overall look has been under critique before, but I am specifically interested in suggestions for improving the css on this site. www.freecrm.x10hosting.com It is meant to be clean.. hence a lot of white but somehow, it just doesn't do it for me yet. Maybe its the colour choice...
  6. freecrm

    Which Design?

    I also prefer the original. After 2 seconds, I had already made up my mind. It's difficult to explain why, but the original just seem to be more coherant.
  7. freecrm

    Limejelly Design

    Generally a pretty good site. I noticed you have aproblem with an include on "support". "failed to open stream... blah de blah". Seeing as the majority of the site has been well put together using css, I was surprised that your tables are not formatted at all! - This makes it look like it...
  8. freecrm

    swapsiesuk

    Quite liking it and funnily enough, I like your header logo! One thing that would drastically improve it would be to add category icons on your front page. This seems a bit too text-heavy at present.
  9. freecrm

    Thanks for the rep for the css tester - hope it helps.

    Thanks for the rep for the css tester - hope it helps.
  10. freecrm

    any goog idea

    Whoa - you like to set your sights high! That said, in the background is a simple database full of links. From what I can gather, the site actually holds very little downloadable content itself, so your hosting memory or bandwidth doesn't need to be too high. The programming and database...
  11. freecrm

    i want to make user registration

    Full agree.. xPlozion - you know what you're doing and scripts like this are relatively easy but to the uninitiated, this can be a little daunting.
  12. freecrm

    i want to make user registration

    OMG... a true registration is lengthy and pretty tricky!!! I have one on my site... Form - put in details - JS to validate the form values. Encrypt data. Save to DB - send automated email to User. User validates from e-mail using link. The a login system has to be done with...
  13. freecrm

    help me plz,, any one change my html file to php

    OK - this obviously has to be simpler. Firstly, you have to understand that pure html or htm files do not have any programming embedded in them. These will have file endings like index.html or index.htm etc. php files are usually just html files with php code embedded in them. But in...
  14. freecrm

    How To Replace A Code With A Word In HTML.

    try <?php $new_variable = str_replace("<<<what you want changing>>>", "to whatever you want it changed to", $previous_variable);?>
  15. freecrm

    What I mean by adding a column is to use css to put in one div block to the left and another...

    What I mean by adding a column is to use css to put in one div block to the left and another (float left) on the right - then put some graphical content in the right div. The body construction would be something like: <body> <div id="wrapper"> <div id="col1"> stuff in left column </div> <div...
  16. freecrm

    My website cannot be shown

    The only reason (as diablo has pointed out) that this happens is when the browser cannot find a specific file. So when you put in a URL for a directory (i.e. www.yoursite.com/directory/), it needs an index file in that directory to load. It will not happen for a URL pointing to a file...
  17. freecrm

    try to attach <?php tags, plese help.

    This is something I am working on now. If you are explaining what I think you are explaining, here is an example php code and variables blended with html that should help. (This was part of a form - obviously) <?php $fromname = stripslashes($_POST['fromname']); $fromemail =...
  18. freecrm

    Understanding PHP, HTML, ASP

    Html, as pointed out, only parses (shows) a page on the client side. Both asp and php are (again as pointed out) server side scripts. This means that, as you access the page, it can access information to/from the server, without imposing any further processing onto your client-side...
  19. freecrm

    review color combination

    I've just tested it in IE6... :) The top menu tabs are an issue. Assuming they are in .png format, IE6 doesn't like them... but there is a fix (bit complex unfortunately). In addition, the on hover attribute just lifts the tab up but the tops are then cut off (within the .menu div?)...
  20. freecrm

    Please test my site

    I quite like it but it looks a bit bland. Don't get me wrong, I like a clean interface but it looks a bit too simple... How about introducing a second column with some graphics? Functionality is great though and considering you're still learning - its good!
Top