Search results

  1. T

    Suggestions for displaying images / photo gallery on web site

    So, that looks pretty nice. Would I be able to put that into a div and size it appropriately? The problem I am running into with a lot of the freebies is that I want to resize them to fit in a 510 px x 450 px box. It is hard to find one that is that size. I could give or take a few...
  2. T

    Suggestions for displaying images / photo gallery on web site

    Is it preferred to make your own or is it better to find a free one? If it is preferred to make your own, where are thr function calls documented?
  3. T

    submit contact page then direct flow back to contact us page from a process page

    After submitting data through a form, I use php to show a message that the mail was sent or not sent successfully. Is there a better way to do this? Also, after that, how can I get back to the index.php page. If I could pass something like index.php?page=contactUs Then, I could get...
  4. T

    Suggestions for displaying images / photo gallery on web site

    Thank you for that. I actually ended up using jquery and adding the arrows that users would press to move the images.
  5. T

    Suggestions for displaying images / photo gallery on web site

    Hello, I am looking for suggestions to display images / photo galleries on a web site. I was going to use Google Picasa and embed it into the site since it would be easy to maintain. But, Google has changed how this works. They run everything through Google+ and have only added the ability...
  6. T

    Make site easy for client to update without database

    Any ideas on how to make a site editable without a traditional database like mysql or sql server? If we could use csv or xml, that would be nice. I already know how to update a csv file. I am just not sure its the best idea. Pros / cons / advice? Thanks in advance and Merry Christmas :)
  7. T

    Build mailing list dynamically

    Yes, thank you for that. I was looking for an example besides that if anyone had any ideas.
  8. T

    Build mailing list dynamically

    I would like ideas on how to build a mailing list dynamically. We are using Google Groups for our list. So, I was thinking of using our contact page ( php code ) to add username and email address to a csv file. Then, the admin will "Import" the csv file monthly. I want it to be easiest...
  9. T

    positioning a footer so that body does not overlap when using absolute positioning

    Ok, so I see how just putting the items in the page without adjusting them with any offset or positioning just piles them on the page vertically in the order you put them in the code. Then, I can move an item with relative to put it maybe on top of something else. I think I did not understand...
  10. T

    positioning a footer so that body does not overlap when using absolute positioning

    I went to the site you posted and it didn't help me. http://css-tricks.com/absolute-positioning-inside-relative-positioning/ Maybe you can explain something I am missing. I read that page, and there is a top relative box. Then, the boxes inside that box are absolute. I have done that. It...
  11. T

    positioning a footer so that body does not overlap when using absolute positioning

    I am really shocked at myself. But, I cannot get the footer to be at the bottom. The stuff I put into #footer is what I want at the bottom. Am I missing something. Here is my code: =========================== <!DOCTYPE HTML> <html> <head> <title>Blah</title> <meta...
  12. T

    positioning a footer so that body does not overlap when using absolute positioning

    I just moved my resolution down to 800 x 600. Only the very sides of the site are cut off. Remember, I use a main container and center that on every browser and resolution. So, I will lose the sides of my site only. And I barely lose anything. The links on the sides are still clickable...
  13. T

    positioning a footer so that body does not overlap when using absolute positioning

    Thank you for the responses. I can see the points you are making. However, I would like to continue this discussion with the following. My sites look the same on every web browser and on every resolution. I don't need any hacks in my css. So, I think there is some value in absolute...
  14. T

    positioning a footer so that body does not overlap when using absolute positioning

    Hello, I am requesting advice on what to do with my footers. I use absolute positioning on my sites. I also center the first div using left:50%; and margin-left: -475px; I normally make my site 950 px; wide. So, 1/2 of 950 = 475. That is how I can center my site using a main container div...
  15. T

    Keep top ul active in drop down while still hovering inside drop down

    I have a drop down that is working in Firefox and IE. Now, I want to keep the top main link 'active' so to say when I am hovering over the sub links in the drop down itself. Here is what I have so far that works: <div id="slideShows" class="nav"> <ul> <li><a...
  16. T

    Problem with drop down

    Wow! I did not realize that this was the problem: <html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml"> I removed that and put what you suggested: <!DOCTYPE HTML><html> leaving everything else the same as my last post. The...
  17. T

    Problem with drop down

    Thanks! Ya, something must be up. I am at home now ( a different computer than my work pc ) and the same thing. So, I restored IE9 back to the default settings. I copied the code you gave me. I put the html into a .html file and the css into a .css. I added the appropriate tags so that I...
  18. T

    Problem with drop down

    I apologize, but I just want to make sure I am understanding everything correctly. Could someone post their full html page with the full css page here that works in IE9 when it was tested today? This could even be just a barebones minimum that has the drop downs working in IE9. It doesn't...
  19. T

    Problem with drop down

    Well, let me ammend my last statement. This works perfectly in Firefox. In IE, I can see the sub options that are supposed to be hidden until hover. I think this is why I went with jquery because IE did not complain like it is doing with my css drop downs.
  20. T

    Problem with drop down

    That worked perfectly. Thanks for the link. I have tried many other drop downs from other sites that say they work. But, this was the first to ACTUALLY work. The other one posted above I think may have been one tweak of the code from working. I still wouldn't mind also getting that to work...
Top