Search results

  1. G

    getting a file's creation date

    I have a php script that reads an image directory and saves the image names in a database. Is there a way I can get all of the files creation dates and time and save them to a variable?
  2. G

    Inspecting Images

    I've created this to get the size of several images I have in a directory.... $image = file_get_contents("$fileLocation"); $source = imagecreatefromstring($image); $width = imagesx($source); $height = imagesy($source); echo "   width : ", $width, " $nbsp; height : "...
  3. G

    How does Pinterest copy images from other sites to theirs?

    I have a web site that I want my pictures copied easily from a site something like dropbox where I can look at all of my images but not really download them other than one at a time. How do I copy them over? Is there a php command or something that will do this?
  4. G

    getElementById

    I have a function that uses getElementById and it has been working great. Now I have a page where I call it more than once on the page. The first one works but the rest don't. What do I need to do to make multiples work on one page?
  5. G

    div margin

    aspecialspot.com between the image and nav
  6. G

    div margin

    I've created a div over another div. The top div has a margin-bottom: 0px; The bottom div has a margin-top: 0px; Why is there about 15 px between the?
  7. G

    Device Width

    I've changed it to: <meta name = "viewport" content = "width=device-width, initial-scale=1"> Still didn't do anything.
  8. G

    Device Width

    I noticed that my reworked site didn't look right on my cell. I added a meta to correct this but it made it worse. What else can I do? Here's the meta tag I added: <meta name="viewport" content="width=device-width">
  9. G

    Div Height

    https://codepen.io/glennbates/pen/JZEybZ I want the blue side div to go from top to bottom. I have it set to 100% so why doesn't it fill 100%?
  10. G

    Div Height

    If I have .elem-a as my parent div that each page has a different amount of content and will be a different height depending on the amount of content. And I have .elem-b as the child div that I set the height:100%; then why does it not fill the parent div 100%. I can understand that if the...
  11. G

    Div Height

    So, it would be better to use a table.
  12. G

    Div Height

    The parent div depends on how much content is has. I just want the child div to fill the height of the parent.
  13. G

    Div Height

    I have a div that I have the height set to 100%. It does not fill the container to 100%. What have I done wrong?
  14. G

    Thumbnails

    I have about 3,000+ images that I need to create thumbnails for. Is there an easy way to do this? I have a very old version of PhotoShop if that helps.
  15. G

    Getting CSS to automatically adjust to content

    I have a menu bar at the top of my page that is set to 800px. I need it to adjust to the amount of content that is in it. I know I have done this before but for the life of me i can't get it to work. If I set width:auto, it goes to the width of the page. I want it to fit just to the margin of...
  16. G

    Slide Show?

    How do I get my images to do this? http://www.amclub.org.sg/ I'm using php if that helps.
  17. G

    Copying files without a ftp cliant

    I understand what you mean now by pushing. Is there a way to create a file that opens them all and I can do a "save page"? I've tried doing that to no success.
  18. G

    Copying files without a ftp cliant

    I'm not asking to push them.
  19. G

    Copying files without a ftp cliant

    It would work similar to how pinterest copies images from one site to theirs. Except I need mp3 files.
  20. G

    Copying files without a ftp cliant

    I was able to write some code that copied all images from one web page to the page the code was ran from. I have .mp3 files that I want to do the same thing to.
Top