Search results

  1. M

    Please review my site

    The site generally looks good, I think. Some things I would change: Maybe make the "normal text" a little bigger. The background image is a ~930 kb bitmap, which contains only 2 colours. I suggest converting it to a GIF for a much smaller file size. The "General", "Services", "Other" and...
  2. M

    filesystem function?

    You should just be able to wrap <pre> ... </pre> tags around it and it should work. Description: http://htmlhelp.com/reference/html40/block/pre.html
  3. M

    Help getting started

    I would do the following, in order: 1. Get comfortable with basic HTML. 2. Learn CSS to a point. (I'm still not too comfortable with it, but I know enough to be able to google what I don't know) 3. Learn JavaScript (things like AJAX are becoming popular, so it's likely to be useful) 4. Learn...
  4. M

    JavaScript: change text in a table cell

    Thanks a lot! Worked great! :) I didn't know about the innerHTML property...
  5. M

    IE not displaying images and tables

    It's almost certainly a float problem. In the CSS file that you reference, you define a position for the images using float and IE seems to have problems with those. I wasn't able to find a solution (I didn't have much time to look, though). Anyway, this should at least narrow down your...
  6. M

    Installation interactive flash map

    Here's a quick one (of that dancing banana): <object type="application/x-shockwave-flash" data="http://69.93.231.198/albino_flash0004/banana(www.albinoblacksheep.com).swf" width="550" height="400" /> There are also more advanced things you can do, like passing parameters to the...
  7. M

    JavaScript: change text in a table cell

    Let's say I have a page like this: <html><body> <table border="1"><tr> <td> left cell </td> <td> right cell </td> </tr></table> <a href="javascript:something()">Change Text</a> </body></html> What would I have to do in order to modify the text...
  8. M

    Run CGI script when site is visited.

    Alright, in case anyone is running Apache, this is how you enable running CGI scripts anywhere you want to (this is for apache-2.0.54, so it might be somewhat different for the 2.2 releases): 1. find httpd.conf which might be in /etc/apache/something or something else under Windows. Searching...
  9. M

    Run CGI script when site is visited.

    Since I'm my host, I guess I'll have to figure out how to do that. Thanks.
  10. M

    Run CGI script when site is visited.

    I have CGI stuff working, but I want to run a script as soon as the main site is visited (i.e. when this appears in the address bar: http://www.[whatever].com/ ). Currently, I simply redirect to http://www.[whatever].com/cgi-bin/script.cgi with JavaScript, but that's really annoying. I'm...
Top