Jump to content

jlhaslip

Members
  • Posts

    2,568
  • Joined

  • Last visited

Everything posted by jlhaslip

  1. And yes, there is the IE Developer's Toolbar, and Opera has a version of a similar toolset included in their versions since 9.20. Access it via Tools > Advanced > Developer Console.And wait until you try Firebug, another FF add-on/Extension.
  2. Have you tried "readonly"?Reference here: http://www.december.com/html/x1/element/input.html
  3. try this: http://socket7.net/lace/
  4. Only if the Query is written to retreive all of the Database rows. More correctly stated, "so every row of the "Query Results" gets a table row in html??".
  5. Can you post a link to your page as it exist right now? It is easier to assist you if there is a live page to work with.
  6. Here is a link to a fairly simple tutorial which you might learn something from: http://www.trap17.com/forums/simple-user-system-t46278.htmlPhp and Mysql are required on your Host to run this one.
  7. You can also adjust the margins and paddings for those elements and get them to display as you prefer. That is one of the advantages to using CSS on your sites. It is so simple to adjust theses things.
  8. <?xml version="1.0" encoding="iso-8859-2"?> At the minimum, drop this from the page. It will put IE into Quirks Mode and make life miserable for you.
  9. Fermat,That works if you use paragraphs for all the blocks of text on your page, but paragraphs aren't always the semantically correct tag to use. I would recommend the method vchris suggests. Spans are a generic inline container, which can also be a portion of a paragraph,and you avoid the necessity of dealing with the margins and paddings, etc of a paragraph. Furthermore, using a class will typically use less bandwidth for multiple occurrences of the "highlighted text" on a page.
  10. Place the javascript in an external file and reference it .
  11. Head over to cssplay.co.uk and check out the menus. there are a couple there that are IE6 compatible.
  12. notice the position of auto has been switched?Your third example above was close:
  13. http://validator.w3.org/check?uri=http%3A%...Fportfolio.html
  14. jlhaslip

    CSS Problem

    Start with this and see how it goes.http://jlhaslip.trap17.com/samples/templat...flex/index.html
  15. jlhaslip

    CSS Problem

    You have mixed %'ges and pixels in the column and margin widths. Stick to one or the other. If you want fixed width outer couluns, then set the middle column margins to a couple of pixels larger than that.
  16. Just a small point: those filters are MS proprietary code and only seems to work on IE6. Didn't work for me in FF2 or IE7.
  17. we'll need the html code, too.
  18. Same in FF2. What is a 'webhotel'?
  19. jlhaslip

    Links

    "been there, done that, got the T-shirt"
  20. jlhaslip

    Qupis

    I have been Hosted at Trap17.com, a "sister" Hosting service for nearly 2 years and never a problem. The Admins are quite experienced and are necessarily cautious above privacy concerns and such. The requirement for the personal information they ask for is to be able to connect a real world person to the account. They will never use it except when it is required for purposes relating to the account. I Moderate the Trap17 Forums that supplies support for the Qupis.com accounts, so if you need any questions answered, see you there.By the way, if a free hosting account registration does not ask for some privacy information such as address, etc, I would be suspicious. It could be an email harvester or worse. In the past, I had a free account and was bombarded with SPAM emails within days. Had to change email accounts. Qupis/Trap17 aren't like that.
  21. jlhaslip

    Boxes

    Thank you for those kind words. Hope you enjoy the adventure.
  22. There was probably (i am sure) some margins and default padding hanging around. by using the zero values on html and body, it resets everything to zero. Default values are not set to zero.
  23. jlhaslip

    footerstick help

    does this work for you? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Example page for full height div</title> <style type="text/css"> html, body { height: 100%; background-color: #ffff55; } #container { /* div you want to stretch */ min-height: 95%; background-color: #ffff55; } } #footer { position:absolute; bottom: 0; margin-top: -20px; background-color: #ffff55; } </style><!-- IE6 Hack Start --> <!--[if lte IE 6]> <style type="text/css"> #container { height: 95%; } </style> <![endif]--><!-- IE6 Hack End --> </head> <body> <div id="container"> this div should be full height (you probably can't see it anyways because there is no background) </div> <div id="footer"> footer here </div> </body> </html>
  24. jlhaslip

    META tags

    Not sure, exactly, but here is a link i use for defining the META tags I do use: http://www.i18nguy.com/markup/metatags.htmlAnd there are lots of results from google: http://www.google.ca/search?as_q=meta+tag%...amp;safe=images
×
×
  • Create New...