Jump to content

turtle

Members
  • Posts

    60
  • Joined

  • Last visited

Posts posted by turtle

  1. Just out of curiosity, did you find it helpful? Was it a good start for continuing education?
    Yup, it helped me a lot.And I like the style and the simplicity of the www.w3schools.comThat's why I got concerned when I saw the site w3fools.com and came here to let people know.
  2. Errr... turtle... are YOU the author of this, or was it just a link you found out somehow?I noticed the site just changed some of its comments, and some are conviniently ones I just made remarks about above.Who's the author anyway?BTW, I wish they mentioned something about the forum... I'm sure everyone you ask will say it's a whole different story... and if there's critisism to that too, we can in most cases tackle it (no, we won't stop manually approving members any time soon; still too much spammers).
    No, I'm not one of the authors of the w3fools.comI just saw it on twitter and came here to let people know.
  3. helloI would like to create js to use with opera forvarious reasons:I would like to autofill specific forms, to autoclickspecific buttons, autoremove specific parts of awebpage, autosave specific text and links from awebpageis there a tool that will guide me with GUI method tocreate such scripts?I mean a GUI to select eg the form I want toautocomplete and then generate the appropriate codethanks

  4. Hey guys... I'm learning PHP, i know html and css.. though its been a LONG time from the last time i used it... So if you can can you look at this:Notes:What im trying to do, is have it show how many files i have listed in each string.. which php adds... in the Upper Right Hand Corner.... basically this: "History = $fhis Math = $fmath Science = $fsci English = $feng Computer= $fcomp" So if you guys know a way to make a cool looking box in the upper-right hand corner, please give me the code!!!!Thanks.....

    <html><head><title>Files</title></head><body><style type="text/css">div.files{border:2px double gray;right: 5px;vertical-align:top;}table.files {border:3px double blue;right: 10px;vertical-align:top;height:70px;width:100px;}</style><?php$his = "<h1>";$ehis = "</h1>";$math = "<h2>";$emath = "</h2>";$sci = "<h3>";$esci = "</h3>";$eng = "<h4>";$eeng = "</h4>";$comp = "<h5>";$ecomp = "<h6>";$fhis = 0;$fmath = 0;$fsci = 0;$feng = 2;$fcomp = 0;$total = $fhis + $fmath + $fsci + $feng + $fcomp;echo "There are $total files stored in our records";?><div id=files><table id="files"><tr><td><?php echo "History = $fhis Math = $fmath Science = $fsci English = $feng Computer= $fcomp"; ?>   </td></tr></table></div></body></html>

  5. hi,I saw nothing about different content types in the XHTML section.(In fact, w3schools.org pages are served as text/html, not as xml.)I recommand those readings about the importance of content-types in XHTML :* http://www.webdevout.net/articles/beware_of_xhtml.php* http://hixie.ch/advocacy/xhtmlIn short, when you send XHTML as text/html (and IE shows a download prompt if you send the correct content-type), the browser parses it as an HTML document, and it understands new things like the self-closing tags as old HTML errors. So it's even harder to parse than an old well-formed HTML document.Served as text/html, XHTML is as useful as HTML4.01 strict, maybe a little more strict, even if you can write strict HTML4.01 documents too.XHTML is really needed when you need to mix multiple XML documents, as XHTML+MathML+SVG (see http://www.w3.org/TR/XHTMLplusMathMLplusSVG/ ).I hope it'll help tou to correct your XHTML lessons.Good luck.

  6. ok, also whats with the layers, is that what IE doesnt support?because the image is the top layer....

    Also, again, sorry and thanks..... if i wanted to keep the styles in the css would i just copy and paste it, or does something work diffrent with external styles?html, body {margin:0; padding:0; width:100%; height:100%; overflow:hidden;}#background{position:absolute;z-index:1; width:100%; height:100%;}#scroller {position:absolute; width:100%; height:100%; top:0; left:0; overflow:auto; z-index:2;} #content {padding:5px 300px 20px 200px;}
  7. yip  :)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" ><head><title> CSS position:fixed; for IE6</title><style type="text/css">body {margin:0; padding:0 10px 0 10px; border:0; height:100%; overflow-y:auto;}body {font-family: georgia, serif; font-size:16px;}#menu {display:block; top:85%; left:80%; width:130px; position:fixed; border:5px solid red;}* html #menu {position:absolute;}</style><!--[if lte IE 6]><style type="text/css">/*<![CDATA[*/html {overflow-x:auto; overflow-y:hidden;}/*]]>*/</style><![endif]--></head><body style="overflow:none"><div id="menu">Hello<br />i think i will <br /> just stay here </div><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1><h1>Scroll the page</h1></body></html> 

    confused, whats with all the code?thanks!
  8. Hi, in a n00b, but i cant figure out how to make a picture/backround stretch, so that it's on no repeat, but when you extend the window it will just stretch your picutre, so its like a no repeat, but you will always see the picture, ive tryed the following but it doesn't work, any ideas?body {background-image:url(background.gif);background-attachment:fixed;background-repeat:no-repeat;background-repeat:scroll;}also, does anyone know how to make text be floating the bottom right of the page?

  9. I was hoping to use your XML validator here, but when I clicked the button, nothing happened. Looking in the script, I found this:

    var xmlDoc = new ActiveXObject("Microsoft.XMLDOM")

    Does it not seem strange that a site whose main subject is HTML standards uses IE-only code? :)Also, having to register just to post this == annoying.

×
×
  • Create New...