User d34dIO - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:40:24Z http://stackoverflow.com/feeds/user/119369 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/987534/how-can-i-use-templates-to-generate-static-web-pages/988898#988898 0 Answer by d34dIO for How can I use templates to generate static web pages? d34dIO 2009-06-12T20:32:37Z 2009-06-12T20:32:37Z <p>Framesets would be the way to do this without any script or serverside influnces.</p> <pre><code>&lt;frameset rows="100,*,100"&gt; &lt;frame name="header" src="header.html" /&gt; &lt;frame name="content" src="content.html" /&gt; &lt;frame name="footer" src="footer.html" /&gt; &lt;/frameset&gt; </code></pre> <p>HTML5 framesets:<a href="http://www.w3schools.com/tags/html5_frameset.asp" rel="nofollow">http://www.w3schools.com/tags/html5_frameset.asp</a></p> <p>This is a very dated solution, most web hosts will support server side includes or you could use php to include your files</p> <p><a href="http://php.net/manual/en/function.include.php" rel="nofollow">http://php.net/manual/en/function.include.php</a></p> <p>Cheers</p> http://stackoverflow.com/questions/988460/can-the-padding-margin-on-radio-buttons-in-ie6-ie7-be-reduced-to-0-1px/988764#988764 0 Answer by d34dIO for Can the padding/margin on radio buttons in IE6/IE7 be reduced to 0-1px? d34dIO 2009-06-12T20:01:42Z 2009-06-12T20:01:42Z <p>Without seeing code I think your running into this "IE inherited margin bug: form elements and hasLayout"</p> <p>Positioniseverything.net has a good write up on it: <a href="http://www.positioniseverything.net/explorer/inherited_margin.html" rel="nofollow">http://www.positioniseverything.net/explorer/inherited_margin.html</a></p> <p>Cheers</p> http://stackoverflow.com/questions/988380/essential-dojo/988523#988523 4 Answer by d34dIO for Essential Dojo d34dIO 2009-06-12T19:16:43Z 2009-06-12T19:16:43Z <p>I too just dove head first into DOjo, they have a good api documentation at <a href="http://api.dojotoolkit.org/" rel="nofollow">http://api.dojotoolkit.org/</a> dojo campus has some good examples of the plug ins.</p> <p>If you ask me the O'Reilly Dojo the Definitive Guide is the best dojo book on the market.</p> <p>I also would like any tips and pointers from the dojo masters</p> <p>Cheers</p> http://stackoverflow.com/questions/988363/how-do-you-debug-your-javascript-code/988417#988417 2 Answer by d34dIO for How do you debug your javascript code? d34dIO 2009-06-12T18:58:58Z 2009-06-12T19:16:31Z <p>I use a few tools: <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a>, Firebug, &amp; Visual Studio. I hear IE8 has a good built-in debug.</p> <p>Cheers</p> http://stackoverflow.com/questions/1012641/why-doesnt-my-background-stretch-behind-my-contentbox/1012934#1012934 Comment by d34dIO on Why doesn't my background stretch behind my contentbox? d34dIO 2009-06-18T14:27:32Z 2009-06-18T14:27:32Z This would be the solution I found also, Vote up for Emily