www.webdeveloper.com

Search:

Type: Posts; User: jedaisoul

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    294

    You need to convert the European special...

    You need to convert the European special characters to the UTF-8 equivalents. Presumably there are conversion tables on the web? Not sure if there is any way of automating it though. Hopefully...
  2. Replies
    1
    Views
    387

    1. I do not know. 2a. Most suitable is a...

    1. I do not know.

    2a. Most suitable is a difficult question.
    2b. Most straight forwards is probably to write the screen builder in PHP, if that is the intended delivery mechanism, but I suspect...
  3. Replies
    2
    Views
    649

    I can't advise about Photoshop, but I presume...

    I can't advise about Photoshop, but I presume that it can output static images in gif format? If so you can animate a set of static gifs using Unfreez (which is a free utility you can find on the...
  4. Replies
    1
    Views
    599

    If you use position:absolute you can overlay one...

    If you use position:absolute you can overlay one div on another, using z-index:, then what is in the lower div will show through. However, bear in mind that opacity and z-index do not work with IE8...
  5. Replies
    3
    Views
    367

    How can you learn about html and not know what to...

    How can you learn about html and not know what to write your site in? A simple site is written in html, preferably with css to handle the styling. As you master the basics, you can add eye candy with...
  6. Replies
    3
    Views
    578

    I do not understand your question, but i'm pretty...

    I do not understand your question, but i'm pretty sure you cannot do it (whatever it is) with html. How can I be so sure? Because html lacks variables. You will probably need javascript, or perhaps...
  7. Replies
    3
    Views
    434

    HTML is important as the base language that css,...

    HTML is important as the base language that css, javascript and php plug in to. It provides the content that css styles, javascript enhances and php links to a database (to simplify their functions)....
  8. Replies
    4
    Views
    1,273

    How long is a piece of string? It all depends...

    How long is a piece of string? It all depends upon your requirements. Many developers/software houses do fixed prices for simple sites up to a given number of web pages. Google will list them by the...
  9. This cannot be done in HTML. You need to use...

    This cannot be done in HTML. You need to use javascript or PHP to set up an array of words. Then set a variable using the time as a pseudo-random number generator to pick the words.
  10. The relevant code is:

    The relevant code is:

    <ul class="menu"><li class="first leaf"><a href="/contact-us" class="mainMenuLinks">Contact Us</a></li>
    <li class="leaf"><a href="/services"...
  11. Replies
    4
    Views
    836

    1. Presumably the auto-complete system is using...

    1. Presumably the auto-complete system is using an "onchange" mechanism that only validates changes. A pre-set value is not a change.

    2. Why does it need auto-completing if you are setting the...
  12. Replies
    1
    Views
    787

    The legal requirements depend upon where the...

    The legal requirements depend upon where the company is domiciled. As a guide only, (I'm not legally qualified) I would suggest that you need:

    1. To identify the legal entity the email is sent on...
  13. Thread: Form Help

    by jedaisoul
    Replies
    2
    Views
    1,022

    You will need to use PHP, but for a small amount...

    You will need to use PHP, but for a small amount of data like this you can avoid using a db by storing the zip codes in an array with one row for each region and 7 or so zip codes per row.
  14. Replies
    8
    Views
    1,588

    The bit about PDF sounds like a red herring to...

    The bit about PDF sounds like a red herring to me. The key point is that you want the form submission to generate an email. That is dead easy to write in PHP, but you need to learn PHP, and you need...
  15. Replies
    5
    Views
    1,458

    Like MP, I can't see anything wrong apart from...

    Like MP, I can't see anything wrong apart from the empty span tags. If they are not needed, I'd delete them. Otherwise try putting &nbsp; in each span so they are no longer empty.
  16. Replies
    1
    Views
    529

    What you are talking about sounds as if it will...

    What you are talking about sounds as if it will almost certainly need a database behind it. If so it needs to be written in PHP with an SQL back-end and HTML/CSS code for the client. There is no...
  17. Replies
    4
    Views
    1,294

    Sounds like the problem was caching. It amazes me...

    Sounds like the problem was caching. It amazes me how many times I get fooled by the browser not reading the updated page, because it has an old copy in cache.
  18. Replies
    7
    Views
    1,602

    I am not familiar with apple specifics, so I...

    I am not familiar with apple specifics, so I cannot assist further.
  19. It depends on whether the charity site is set up...

    It depends on whether the charity site is set up to receive parameters, and whether they are GET or POST parameters. The URL of the charity site was removed, and there are a number of water charities...
  20. CSS does not use quotes. I.e. width:"500px"; ...

    CSS does not use quotes. I.e.
    width:"500px";

    should be:

    width:500px;
  21. Interesting idea, but what is the osx and android...

    Interesting idea, but what is the osx and android compatibility like? The lifetime of classic fixed-width PC style web site is fast fading.
  22. Replies
    1
    Views
    539

    Did you kep a copy of the web page as it was...

    Did you kep a copy of the web page as it was before you made the changes?
    - If so, I suggest reverting to the old code and making and testing each change separately. That way you can isolate the...
  23. Replies
    3
    Views
    624

    Is "/store" a folder or a file? - If it is a...

    Is "/store" a folder or a file?
    - If it is a folder it should be "/store/"
    - If a file it should be "/store.html" (or .htm, .php etc...)

    target="blank" should be "_blank" (if you are using it),...
  24. Thread: Html Catalog

    by jedaisoul
    Replies
    2
    Views
    531

    Rather than a table, I suggest using...

    Rather than a table, I suggest using position:absolute. That allows you to explicitly set where you want each image to be displayed. It can be a lot easier than trying to get static divs and imgs to...
  25. Replies
    71
    Views
    16,679

    Sticky: I'll happily answer any queries, but please note...

    I'll happily answer any queries, but please note that the W3C have just released a beta of their own validation suite. I have not had time to check it out, but it is available at...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles