Search results

  1. jnjc

    HTML files saved with a PHP extention

    Not insane at all. Rather than have some files with a .html and some with a .php, it makes sense to standardise and have them all with the same extension. Would also leave you less likely to link to the wrong extension...
  2. jnjc

    Using CSS to place a background image

    Have you resolved this issue ?
  3. jnjc

    opinions on our new design

    I'm with JayT on some of his issues and I think rarepearldesign you are a bit out of line saying he is "coming off like an asshole", you are definitively personalising it. Most of what JayT says is very valid if you apply his caveat: "Again, this is all contingent on the predication that you...
  4. jnjc

    Javascript help

    At a guess I'd say the issue here is to do with using 'setTimeout', I reckon that the tasks are being queued so quickly that they are not executing in the correct order and thus causing the JS parser to get 'confused'. When you put alerts in, it is causing a gap between when each 'setTimeout'...
  5. jnjc

    poll with ajax support.limited number of choices

    I thought my example was good .... :)
  6. jnjc

    poll with ajax support.limited number of choices

    You would probably be better using javascript to achieve both of these requirements. 1) Using JS to see how many boxes are checked would be easier then trying to do this using ajax. 2) This could be a tricky one as what happens if the user checks a box unchecks it, checks some more boxes...
  7. jnjc

    Greybox doesn't seem to work right

    Your problem is an ajax permissions problem. Browsers will not let you load ajax content from domain B into Domain A. If you look at the Mcdonalds link on both sites, the link target is "http://www.themotherwell.com/mcdonalds.html". This will work fine in http://www.themotherwell.com but you...
  8. jnjc

    Virgin Thread - Form Button

    What you could do is include a link to a .pdf version of the terms, which the user can click and then print. save etc.
  9. jnjc

    How do we sort an array of.....

    What language are you using ? If you are using php, then do something like this: <?php $fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple"); asort($fruits); foreach ($fruits as $key => $val) { echo "$key = $val\n"; } ?> The above example will output: c =...
  10. jnjc

    Image links do not work in IE

    Can you post a link or sample
  11. jnjc

    A few Joomla Questions

    1) Joomla is totally flexible in regards to this, if you can do what you need using .css changes to the template then it's pretty easy to mod the plugin and modules 2) Not me
  12. jnjc

    mysql triggers

    I don't really use MySQL triggers but doing a quick search I can't find much info on read triggers. You might be best looking at Create/Update triggers to modify the data as it's written. HTH, JC
  13. jnjc

    A few Joomla Questions

    Not sure about the template question. As for development/deployment I usually develop on one of my own sub-domains. When the client has given the thumbs up (and the money out) I then zip up the directories, dump the DB and deploy both live. I found the easiest way to do it is to first...
  14. jnjc

    site search engine for images

    There is a lot more to this than just plugging in the images. You will need to be able to: 1) Upload images and add/modify keywords etc. 2) Design and code the page with things like: a) Introduction b) Samples etc. c) Code the actual creation and modification of the word wth...
  15. jnjc

    site search engine for images

    I don't know what level you expertise is, but if you are a beginner then you have a big learning curve ahead of you to attempt something like this. It may look simple but the background stuff required for a site like this is reasonable complex. If you need this quickly then I think you are...
  16. jnjc

    How do you convince someone they should have their website re-done?

    First off introduce yourself and give a little information. Then say something nice about their existing site along the lines of 'I say your site, while blah is good, it could do with a little updating...' Then either show they a quick mock up of what you could do or show they some of your...
  17. jnjc

    Canvas size

    If you are going for a fixed width you are probably looking at two choices. The lowest resolution that most sites support is 800 X 600, 99.9% of the time this is the lowest res that you will encounter. To support this your canvas should be about 760px wide. lately there is a bit of a trend...
  18. jnjc

    first website, need help..

    Getting Google to rank your page is a complex issue. There are lots of factors google will use. If google finds a link to your page somewhere else it considers this a sort of "thumbs Up" for your page and that will increase your page rank, this is why your friend recommended using a social...
  19. jnjc

    site search engine for images

    That application is pretty specific, open source etc. tends to be more generic. You will probably need to build something yourself.
  20. jnjc

    site search engine for images

    Most of this sort of thing is done using mySQL and PHP. Check that you hosting supports it, but I'd be surprised if it didn't. Before you start coding spend a bit of time seeing if there is something out there that already does this. With a bit of research you might find that there is a...
Top