Search results

  1. M

    Footer has a space between it and body

    There is nothing at that link but a page that says "Website Coming Soon"
  2. M

    Back to previous page

    I use a Javascript function function prevPage() { history.back(); } and then call it in the link <a href="javascript:prevPage()">Back to previous page</a> NOTE: You may be able to just use "javascript:history.back()" in the link instead of calling the function. I haven't...
  3. M

    Resizing Images

    I was a big fan of ACDSee...around version 4! Then I found it started becoming bloated (as with most software these days :mad:) as they were trying to make it do too much. Sorry, not trying to discount it as an option, but I hadn't heard the name "ACDSee" in years and felt a little nostalgic...
  4. M

    source code spacing all messed up in windows

    This is more of a curiosity question, but may be important if I hand over webmaster duties to someone else... I designed my site (and do all my updating/maintaining) on a Linux machine using either geany or bluefish editors. After I redesigned the site using xml/xslt, I went to show my...
  5. M

    Resizing Images

    The best I've found is phatch, which is a python based open source photo batch processor. There is a Windows version according to their website, but I haven't tried it - Go Go Linux! - and you'd need to satisfy a few dependencies (python, wxpython, and pil) But it is the cat's meow, IMHO...
  6. M

    How do I 'prepend' the address to a directory

    Thank you, AusQB
  7. M

    Open external link in new window

    What I use - and which also keeps your page xhtml (strict!) compliant - is the following: Create a javascript file (in this example, external.js) that contain the following: function externalLinks() { if (!document.getElementsByTagName) return; var anchors =...
  8. M

    How do I 'prepend' the address to a directory

    Sorry for the unintuitive topic title, but I don't really know how to sum up what I am asking... My site has a directory named 'pictures', and the thumbnail gallery is displayed using the address: www.mysite.com/pictures.xml How would I go about making it accessible by using the address...
Top