Jump to content

TCH-Don

Members
  • Posts

    11,643
  • Joined

  • Last visited

Everything posted by TCH-Don

  1. If it is named index.htm or index.html it will be displayed by default
  2. Welcome to the forums, genX I use CoreFTP lite and love it
  3. Congratulations!
  4. Tim, since this appears to be a Front Page problem I am going to move this to the Front Page forum for better exposure. where more FP user will see it and hopefully chime in. If I am wrong, let me know.
  5. It looked like the original question was to print the page with the TOS There are many ways to handle printing with css. Here are links to help http://www.javascriptkit.com/dhtmltutors/cssmedia.shtml http://www.w3.org/TR/REC-CSS2/media.html http://www.alistapart.com/articles/goingtoprint/ Its just my opinion, but most visitors that are going to print out something from a page will only want the content and not nav buttons, images or other common elements. You can alway add the style to just one page for printout. But thats up to you. You can always leave off the media discriptor or set it to all.
  6. If you are talking about adding links to a web page then yes a database link manager will make life so much easier. Be sure it it easy to add/edit categories and links.
  7. Please keep in mind that the print css file should be a different css file than your screen file. Copy the screen file and save it as something like print.css edit it and charge parts you do to want to print to display: none; here is an example >/* print.css file */ /* set page to white with black type */ body { background-color: #FFFFFF; color: black; font-family: Times New Roman, Times, Serif; font-size: 18px; margin: 1em 1em 1em 1em; } /* turn off items not to print */ hr { display: none; } table.banner { display: none; } td.menu { display: none; } td.content{ text-align: left; } div.main_right_float{ display: none; } td.footer{ display: none; } then link them both ><link type="text/css" rel="stylesheet" href="style.css" media="screen"> <link type="text/css" rel="stylesheet" href="print.css" media="print"> Now when you do a print preview it should look like it will when printed and this requires no special action by the visitor. hope this helps.
  8. Sarah, its posts like this that makes us the famly we are. all helping each other and having a great place to relax or ask for help. Glad you are here
  9. Busy (like this place )
  10. Camera
  11. Welcome to the forums, Tim
  12. Round
  13. Welcome to the forums, robandcob
  14. Just checking thats not a space between the words but an underscore _ spaces in file names do not work.
  15. Glad you got it did the dada_files name have any upper case letters?
  16. TCH-Don

    Drupal Anyone?

    How about just RewriteBase / I did not work for me the first time I removed the # and had RewriteBase /drupal in the drupal .htaccess file then I had to login and goto admin/settings to enable clean urls and then the long urls changed to things like domain/drupal/taxonomy/term/2 and domain/drupal/node/3
  17. Welcome to the forums and the family, Haley
  18. TCH-Don

    Drupal Anyone?

    To get a url like drupal/node/7 go into the admin settings and enable clean urls if you are in a subfolder mod the drupal .htaccess file part # Modify the RewriteBase if you are using Drupal in a subdirectory and the # rewrite rules are not working properly: #RewriteBase /drupal remove the # in front of RewriteBase /drupal not sure if that is what you mean.
  19. I would look at hotscripts for this.
  20. See this post from today help desk software
  21. Skill's
  22. Welcome to the forums StephanieP that should be $FILES = '/home/cpanelname/dada_files'; and $PROGRAM_URL ='http://www.domain.com/cgi-bin/dada/mail.cgi'; The link to the other post that Thomas posted should help. I just followed their install page step by step.
  23. Welcome to the forums Scott
  24. Welcome to the forums, Schmoe And thanks for sharing with the family
  25. Let us know if you need more help, we love to help
×
×
  • Create New...