Jump to content

dsonesuk

Members
  • Posts

    11,220
  • Joined

  • Last visited

  • Days Won

    117

Everything posted by dsonesuk

  1. You are confusing Frames with Iframes, Frames, true should never be used, iframes are widely used in there place, but never used as frames, frameset were used, they (iframes) are still used in HTML5. Youtube, google maps, facebook, all use iframe's to insert there apps onto your site.
  2. If you know what to look for you don't have to copy and paste into validator, page doctype strict, iframe not supported in strict, babber bing, babber boom! problem identified.
  3. Bit of advice, don't use frameset use transitional instead.
  4. Good! for you, and.........
  5. But! by that theory! wouldn't it be good idea to remove access to your current .net site, as it has all these errors you are apparently fixing on your flash drive, which all your so called prospective clients have access to NOW!
  6. iframe will not validate in Strict doctype, it and its attribute will produce error, Iframes are allowed in transitional, frameset doctypes.
  7. Like i said! you don't have the code to read/display the content of file, OPEN yes! read or display NO! thats why i supplied a link to show you how.
  8. But! most a have a clue on taking the first steps of reaching perfection.
  9. "The server is working" will show if the server is working or not!$file=fopen("file.txt", "r") or exit("Unable to open file!");IS ONLY for the searching of and IF found opening, ELSE show error message, you now have show the contents of the file.http://w3schools.com/php/php_file.asp
  10. Only time i see orange in IE9 is when yo view in browser mode IE7, or document mode IE7 and document mode Quirks mode. and don't point out obvious elements with styling, I AM NOT eduardlid
  11. Seems were returned to pointing to to relevant links, like that's never been tried before.
  12. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR...ransitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Scrolling Issue</title><style type="text/css">#container {width: 600px;height:100%;}</style></head><body bgcolor="gray"> <div id="container" style="background-color:orange; "><div style="background-color:red;width:300px;float:left; margin-left:310px; position:relative;"><!-- <div style="background-color:orange;width:300px;;height:100%; position:absolute; top:50%; bottom: 50%; left: -300px;">A Segment</div> -->Hi creative1977… No! I Can't see the “Orange” coming down alongwith this DIV?... By the way, Since I see no orange, I can't get-rid of that Orange underneath thisDIV?<br /><br />Hi creative1977… No! I Can't see the “Orange” coming down alongwith this DIV?... By the way, Since I see no orange, I can't get-rid of that Orange underneath thisDIV?<br /><br />Hi creative1977… No! I Can't see the “Orange” coming down alongwith this DIV?... By the way, Since I see no orange, I can't get-rid of that Orange underneath thisDIV?<br /><br />Hi creative1977… No! I Can't see the “Orange” coming down alongwith this DIV?... By the way, Since I see no orange, I can't get-rid of that Orange underneath thisDIV?<br /><br />Hi creative1977… No! I Can't see the “Orange” coming down alongwith this DIV?... By the way, Since I see no orange, I can't get-rid of that Orange underneath thisDIV?<br /><br /></div></div></body></html>
  13. Calm down thescientist, sounds like you are getting stressed out like, like.... well like eduardlid. You know what! I thought (silly me), the form action problem (post#30) was finally fixed according to post #57, and he was ready to tackle the next 12 errors, which calculated to a hot topic total at the end of 354 posts, well that was killed when form action was brought up again in post#62. You know in another topic i said you could never run out of numbers for an auto incremented field type, i think eduardlid. will be putting that statement to the test.
  14. 43 post about validation AND still counting, when will it end, will there ever be a end arrrrrggghhhhh.
  15. ??? no still don't get want you want, this maybe <div id="container"> <div style="background-color:red;width:300px;float:left; margin-left:310px; position:relative;"><div style="background-color:orange;width:300px;;height:100%; position:absolute; top:50%; bottom: 50%; left: -300px;">A Segment</div>Why "A Segment" is notscrolling Down?...<br />Why "A Segment" is not scrolling Down?...<br />Why "A Segment" is not scrolling Down?...<br />Why "A Segment" is not scrolling Down?...<br />Why "A Segment" is not scrolling Down?...<br /></div></div>
  16. ???? why would you think it would? there's nothing here or anything to force a scroll bar to appear anywhere for scrolling.
  17. You need to give #nav2 li position: relative; this will force sublevel ul position to be determined by parent li top and left edge #nav2 li { float: left; list-style:none; text-decoration: none; font-size: 15px; padding: 5px 5px; border-radius: 5px; margin: 10px 5px; box-shadow: 3px 3px 6px #CCC inset; font-family: Myriad Pro, sans-serif; background: #d3d5d7; font-weight: 100;position: relative;}sublevel ul needs to be hidden from view until called upon #nav2 li ul { height: auto; /*left: 100px;*/left: -9999em; position: absolute; z-index:999; width: 100%; /*maybe consider a fixed width*/ padding: 0 50%;}
  18. <!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"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Untitled Document</title><script type="text/javascript">/*<![CDATA[*//*---->*//*--*//*]]>*/</script><style type="text/css">#wrapper {margin: 0 auto; width: 960px;}.ex1, .ex2, .ex3 { overflow:hidden; margin-bottom: 20px; background-color:#CCFFCC;}.left, .right { width: 200px; background-color:#CCFF00; min-height: 400px; }.left { float: left;}.right {float:right;}.content {background-color:#CCCC00;}.ex1 .content { min-height: 400px;margin-left:210px; }.ex2 .content { min-height: 400px; margin-right: 210px; }.ex3 .content { min-height: 400px;margin: 0 210px;}</style></head><body><div id="wrapper"><div class="ex1"><div class="left">Left</div><div class="content"> Content</div></div><div class="ex2"><div class="right">Right</div><div class="content"> Content</div></div><div class="ex3"><div class="left">Left</div><div class="right">Right</div><div class="content"> Content</div></div></div></body></html>
  19. Everything that should be left, float: left;, Everything that should be right float: right;,
  20. Position: absolute = fixed left, top positions = fine, if all screens are same size, but! are not! = unhappiness and depressed -> BUT! if had used margins, padding, float instead = centred in all browsers = happiness and contentment.
  21. ??? I honestly can't figure out what you are trying to describe here? I think you mean this kind of layout .iso{background:url(http://static.mikroviologos.eu/image/hktheme/sprites2.png) 0 10px no-repeat; height: 30px; line-height:30px; padding-left: 30px; margin: 0.5em 0;} <div><h5 class="iso">Title text</h5><p>text text</p><p>text text</p><p>text text</p><p>text text</p><p>text text</p></div>
  22. Not! necccesssssarillllly .iso{background:url(http://static.mikroviologos.eu/image/hktheme/sprites2.png) 0 10px no-repeat; height: 30px; line-height:30px; padding-left: 30px;float: left;} <p class="iso">text text</p>
  23. Sprite image won't work for image as its used as background, and you are not supposed to use background-image on img element, but it can be used for anchor element.
  24. When the ajax places the new content into the required div, reapply the reinitialization of the prettyphoto function if (xmlhttp.readyState==4 && xmlhttp.status==200) {document.getElementById(targetDiv).innerHTML=xmlhttp.responseText;$("a[rel^=prettyPhoto]").prettyPhoto();}
×
×
  • Create New...