Jump to content

jlhaslip

Members
  • Posts

    2,568
  • Joined

  • Last visited

Everything posted by jlhaslip

  1. bug = "undocumented feature"
  2. jlhaslip

    Importing DB

    Can you go back and use phpadmin to export the "stucture only" and then export the tables one or two at a time?You should then be able to IMPORT them using phpadmin again???
  3. jlhaslip

    calendar php

    http://php.about.com/od/finishedphp1/ss/ph...ms=php+calendarhttp://www.trap17.com/forums/index.php?sho...mp;#entry285183http://annex.trap17.com/scripts/
  4. OptionGroups is definitely the correct Method.
  5. jlhaslip

    calendar php

    Cutenews has a calendar script. Might be able to Mod that into your page?
  6. Some browsers us padding on lists, so remove all the padding from the list at the same time.
  7. I'm thinking you will end up with considerably more than 3 tables.Inventory, Delivery Method, Products, Orders, and these come to mind with little or no effort.Lots of ecommerce solutions already out there. Might be able to research a few to gain some in-sight.http://www.google.ca/search?as_q=&hl=e...amp;safe=images
  8. You might want to add some information about the entire 'process' you went through to get this CMS to this stage. Sort of like a Blog about the process. That would make some good reading and turn the project into a 'tutorial' for others who might wish to duplicate the path you have been on.You might then be able to hand it in as a project for your school classes at some point? Just an idea I had.
  9. http://jlhaslip.trap17.com/samples/misc/po...entereddiv.html
  10. jlhaslip

    Border Trouble

    * html,body {margin:0;margin-top:0;padding:0;} works for me in ff2
  11. Placing the xml declaration ahead of the doctype puts IE6 into quirks mode. Even though the w3c specifies to put it there, it is not a good idea, and the code will still validate.
  12. jlhaslip

    Border Trouble

    * html, body {margin:0;padding:0;} Change this first couple of lines in your css. Then add margins and padding where you need them.*edit*Might need to modify the padding-top on the header h1 after you do that, too.
  13. I have this nice script for a database we need to see the 'script'.
  14. You will need to use either a flat file (text) or a database to associate the text to each picture. Lots of Image gallery scripts around.Try Coppermine, for example. Or Google it.
  15. To add to what Kevin says up above this post, NOT using the $site address makes the code "portable", meaning if you change domains or copy the code to another location, the link will still work since it is relatively addressed, not an absolutely address. Of course, for external links (ie:http://www.w3schools.com/), you might continue to use the http portion of the link but the links pointing to your own pages or inside your web Host, I recommend the relative address method, without the $site variable.
  16. Or Mod your HOSTS file to make them go away... :)Not that I would do anything to avoid looking at Ads....(*looks for a link to post here*)Try thisCan't remember where I found the procedure, but simply point the ad links to 127.0.0.1 (which is your own computer) and the ads won't be found.
  17. Just having "one of them moments" myself...
  18. you need to link to an id= not a class=Like this: <div id= "menu-links" name="menu-links">...<a class= "menu-return" href= "#menu-links" title= "Return to top">Return to top</a> and the CSS should reflect the changes, too
  19. phpbb3 is near the end of the beta testing. I'd recommend that, although it would depend on what they anticipate the usage as. There are some really good, lesser known forum software around, some even validate xhtml strict, if you know where to find them
  20. Play with it as much as you want. That is a freebie Template on my Hosting account for a sample. If you need any help, post the question on the Forum here so others can learn from it, too.Enjoy.
  21. It is already in html format. You see the results of the Browser processing the html by clicking on that link. Click on that link and then select View > Source in your Browser menu bar. All the html shows up. Then "select all" after a right click, followed by a right click "copy" and save it to a blank file in your text editor by using right click "paste". If you are not familiar with the right-click functions, time to learn...Perhaps you need to check out the tutorials at w3schools first, before you try to change the page. Learn about the html behind the page and then attempt to modify it.
  22. There is no List Item on this sample. Did you post the correct code?http://jlhaslip.trap17.com/samples/menus/sidebar_menu.html
  23. Basic 3 column layout found here: http://jlhaslip.trap17.com/samples/templat...flex/index.html
  24. I'll assist. Reasonable, too.
  25. Okay, now I see.The Navigation is floated left, but it is placed below the floated right "content" and that is affecting the display, so move the navigation up above the "content", but inside the "main" div. Check out a float tutorial to understand that the "normal flow" is interrupted when you float items and the source order does matter.An example of placement is the "clearer div was inside the right hand container and should've been placed below the narrow content div.Speaking of div's, the page has a serious over-use of div's, and could be cleaned up to avoid "div-itis", but I am sure many of these are coming from the Wordpress, so can't be cleaned up, maybe....Also found that the "content" is defined as both a class and an Id. Change the reference in the css from a class= to an id=.There were numerous other small items which I have a copy of corrections for, but with 500 lines of code, I won't be posting them here. Please send me am email and I will send back a zip file.
×
×
  • Create New...