Search results

  1. G

    How do I get my divs to stay side by side?

    Either I don't understand exactly what you mean or it didn't work. I took out the width of the second div class and it still moved under the first when the text was too long.
  2. G

    How do I get my divs to stay side by side?

    When I have too long of a sentence, the second div goes to the bottom. For example, if I have: <div class = "style1"> some info </div> <div class = "style2"> bunch of info </div> my styles are set to float:left If I have short lines in the second div, they will stay side by...
  3. G

    How do I carry input data over in an input variable to an imbedded site?

    Is there another way to include one page into anothe that would workr? I know with earlier versions of php you could use a php include but not anymore.
  4. G

    How do I carry input data over in an input variable to an imbedded site?

    Say for example, site B has the same form values as site A and you input the "fname" from site A
  5. G

    How do I carry input data over in an input variable to an imbedded site?

    I know there is more than one way to embed a site on a web page but for example, using iframe
  6. G

    How do I carry input data over in an input variable to an imbedded site?

    is it possible to carry over a post variable from one site to another if one site is embedded in the other? For example, if I have <input type="text" name="fname"> on site A and site B is embedded into A, can site B read the "fname"?
  7. G

    Why will this not drop my anchor from the top?

    Only what I put above so far.
  8. G

    Why will this not drop my anchor from the top?

    I'm not trying to center it, unless you mean center it vertically. I'm just trying to keep it from being up next to the top of the nav bar I have created.
  9. G

    Why will this not drop my anchor from the top?

    Here's all I have right now until I get it to work. I have tried using margin-top but it does not work either. <div class="nav-bar"> <a href="/">Home</a> </div> Here's all that my nav-bar has right now. .nav-bar { background-image: url('images/Nav-bg.jpg'); height: 31px; width...
  10. G

    Why will this not drop my anchor from the top?

    .nav-bar a { margin: 4px 0px 0px 4px; color: #004890; font-size: 13px; text-decoration: none; font-weight: bold; }
  11. G

    How do I get my web site to create icons of a screen shot of another web site?

    Still would like to know how I could do it.
  12. G

    How do I get my web site to create icons of a screen shot of another web site?

    Highly doubt it was done manually. They have maybe as many as 100,000+ sites listed. I'll take a look at the link you provided when I get home. Thanks for the tip.
  13. G

    How do I get my web site to create icons of a screen shot of another web site?

    For example, this page... http://searchsight.com/49A4P131-Real-Estate.htmlhttp://searchsight.com/49A4P131-Real-Estate.html
  14. G

    Searching out parts of a long variable content in php

    I got it. Just a little php copy.
  15. G

    Searching out parts of a long variable content in php

    It sounded a little off after I went back and read it but it is legal and ethical. If they change the name or location of anything, my site is messed up.
  16. G

    Searching out parts of a long variable content in php

    Let's just say I need to download more than pictures.
  17. G

    Searching out parts of a long variable content in php

    Yes, what I created has worked out great. I use it every hour of every day with a cron setting. I need to copy them for what I am using them for right now. About 2,000 products and an average of about 3 pics each.
  18. G

    Searching out parts of a long variable content in php

    How would I use this to copy an image from that site to my site?
  19. G

    One div floating over the other. How do I make one more dominant?

    I just thought of something. I used to have an image of something and the numbers 1 through 5 below it and as I hovered over each number, the image above it would change. I can't remember how I did it. That would work. I think. I remember onmouseover and target. I'm not sure this could be...
  20. G

    One div floating over the other. How do I make one more dominant?

    So, there's no way to make the third div relative to the first div?
Top