Jump to content

jlhaslip

Advanced Member
  • Posts

    524
  • Joined

  • Last visited

Posts posted by jlhaslip

  1. There are no Internet Police that will come knocking on your door if you use the Html you propose.

    In fact, for a horizontal row of links, that would be quite acceptable.

    Use :

    #footer p {}
    and #footer a {}

    to markup the text and links in the footer.

  2. try this out:

       -----------------------------------
    
    ul#navlist li a#subcurrent {
      }
    
    ul#subnavlist1  a#subcurrent:link { 
           font-weight: bold;
           color: #f00000;
       }
    ul#subnavlist1 li a#subcurrent:hover { color: #00d; }
    
    

    I only listed what I changed at the end of the css.

  3. I have an AEF Forum package installed into less than 20 Megs. (including the zip file and a database backup.)

    35 users information including images. The DB size is only around 3.8 Megs and it has been up and running for about a year.

    Of course, there are Forums out there with 250,000 users and a couple million posts that are much larger. You really won't know until the Forum gets running, but plan on 50 Megs if that is available for disk Usage. Bandwidth is another matter.

    i don't recommend the free Forum Hosts because quite often they restrict the Theming, backups, etc so you are not able to administrate the Forum to its fullest capacity. And the Ads and such...

     

    [borderline spam]

     

    Remember we do not offer services here unless requested

  4. Incidently, for the Linux users out there, look in your Multiverse for a KDE application named Baskets. It works similar to Evernote, but not quite as powerful. One major difference is the manner in which Evernote can read "text" from images. Basket is capable of that.

    You can create "baskets" for different projects/subjects and add links, text, notes, images and all kinds of stuff a lot like Evernote. Encryption is not available, either, but the price is certainly right. Free, of course. Same price as all the other Linux products.

  5. Please be reminded that the http protocol includes sending the image information to the client requesting the image.

    That said, there is nothing you can do that will stop a devious client from capturing the image off the page.

    Disabling right click, transparent overlays, and other methods only defer the honest people. Any image on the web is available for capture. Many methods have been devised and they all fail.

    As noted above, a print screen and an Image program like Photoshop or GIMP will have the image captured in a flash.

     

    I appreciate that the purpose is to provide your potential clients with quality images on your Portfolio, and all that, but stopping them from 'snagging' the image in one form or another is not a valid request. Please re-consider the 'watermarking' of the images as the most effective method of deferring them from stealing the images. Another thing to consider is that you do not need to present the best quality shot on the web.

     

    Rather than providing a print quality image, reducing the quality to 'web quality' might be another approach to take. Considering Monitor display quality and Bandwidth are issues as well, you can drop the quality of the print so that it diplays best at a reduced size suitable for display, but not good enough as a print.

  6. You have not posted the entire code block, but from what i see, there is only one comment I would make.

    The Mail function needs to be performed only if there is no input in the 'hidden' field.

    // call success or error js functions
    if ( $_POST['to_address'] ) { 
    echo 'Tastes Like spam!'; 
    } else {
    
    $success = true; mail($EmailTo, $Subject, $Body, "From: ");
    
    }
    
    if ($success){
     print "doThanks()";
    }
    
    else{
     print "doError()";
    }
    ?>

    You could also tighten up the code by moving the ajax calls into the If-else above them.

×
×
  • Create New...