<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Dynamic Drive Forums - Looking for such a script or service</title>
		<link>http://www.dynamicdrive.com/forums/</link>
		<description><![CDATA[Simply looking for a script or service on the web to accomplish something on your site? Post such non actual "coding" related inquiries here.]]></description>
		<language>en</language>
		<lastBuildDate>Wed, 19 Jun 2013 02:16:57 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>10</ttl>
		<image>
			<url>http://www.dynamicdrive.com/forums/images/misc/rss.png</url>
			<title>Dynamic Drive Forums - Looking for such a script or service</title>
			<link>http://www.dynamicdrive.com/forums/</link>
		</image>
		<item>
			<title>i see sometimes in contents of sitemap menu like a tree file system</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?74181-i-see-sometimes-in-contents-of-sitemap-menu-like-a-tree-file-system&amp;goto=newpost</link>
			<pubDate>Mon, 10 Jun 2013 14:17:21 GMT</pubDate>
			<description>i see sometimes in contents of sitemap menu, or else,a like a *tree file system menu* that expands and collapse... you have such script here? or what keyword search?</description>
			<content:encoded><![CDATA[<div>i see sometimes in contents of sitemap menu, or else,a like a <b>tree file system menu</b> that expands and collapse... you have such script here? or what keyword search?</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?23-Looking-for-such-a-script-or-service">Looking for such a script or service</category>
			<dc:creator>lse123</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?74181-i-see-sometimes-in-contents-of-sitemap-menu-like-a-tree-file-system</guid>
		</item>
		<item>
			<title>Extend Container for Short Pages Down to Footer</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?74139-Extend-Container-for-Short-Pages-Down-to-Footer&amp;goto=newpost</link>
			<pubDate>Fri, 07 Jun 2013 03:46:27 GMT</pubDate>
			<description><![CDATA[I have a "container" into which all the webpage info (text, photos) is placed, that's centered within a "wrap" of a different color. 
The "wrap" extends the width of the whole webpage. 
 
On short pages, or pages that don't have a lot of information on them, the "wrap" / "wrap" color comes between...]]></description>
			<content:encoded><![CDATA[<div>I have a &quot;container&quot; into which all the webpage info (text, photos) is placed, that's centered within a &quot;wrap&quot; of a different color.<br />
The &quot;wrap&quot; extends the width of the whole webpage.<br />
<br />
On short pages, or pages that don't have a lot of information on them, the &quot;wrap&quot; / &quot;wrap&quot; color comes between the (bottom) end of the &quot;container&quot; and the &quot;footer&quot;.<br />
<br />
Is there something I can place there, at the bottom of the &quot;container&quot; maybe, that will stretch it automatically to down all the way to the top of the &quot;footer,&quot; so the color of the &quot;wrap&quot; doesn't come between them?<br />
<br />
I have thought of using many &lt;br&gt;'s to fill the page, but everyone's monitors are different sizes, so what will fit on the supertall monitors will end up being ridiculously long empty space on the shorter monitors.<br />
<br />
I hope this makes sense.<br />
<br />
<br />
Here is the css code:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; html, body {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; margin: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; #wrap {&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; min-height: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  height: auto !important;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; /* Negative indent footer by it's height */<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; margin: 0 auto -60px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; body {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; background-color: #999;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; margin: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; font: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; line-height: 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; /* This is the container */<br />
&nbsp; &nbsp; &nbsp;  #content {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; top: -28px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clear both;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; background: #eee;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; overflow:auto; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding-bottom: 85px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp;  /* Same color as content container, to look continuous.*/<br />
&nbsp; &nbsp; &nbsp; &nbsp; #footer {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clear: both;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height: 60px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; background: #eee;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</code><hr />
</div>Thanks!</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?23-Looking-for-such-a-script-or-service">Looking for such a script or service</category>
			<dc:creator>questions</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?74139-Extend-Container-for-Short-Pages-Down-to-Footer</guid>
		</item>
		<item>
			<title>Script to show automatically opening times of the day</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?74109-Script-to-show-automatically-opening-times-of-the-day&amp;goto=newpost</link>
			<pubDate>Wed, 05 Jun 2013 13:06:28 GMT</pubDate>
			<description>Hello, 
 
I am looking for a simple script that automatically show every day the day opening time of a shop. 
Something like the attached image shows. 
Any help is welcome. Thank you 
 
Best, 
W</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I am looking for a simple script that automatically show every day the day opening time of a shop.<br />
Something like the attached image shows.<br />
Any help is welcome. Thank you<br />
<br />
Best,<br />
W</div>


	<div style="padding:10px">

	
		<fieldset class="fieldset">
			<legend>Attached Thumbnails</legend>
			<div style="padding:10px">
			
<a href="http://www.dynamicdrive.com/forums/attachment.php?attachmentid=5078&amp;d=1370437472" 
rel="Lightbox_295775" id="attachment5078"
 target="_blank"><img class="thumbnail" src="http://www.dynamicdrive.com/forums/attachment.php?attachmentid=5078&amp;stc=1&amp;thumb=1&amp;d=1370437472" 
alt="Click image for larger version.&nbsp;

Name:	Unknown.jpeg&nbsp;
Views:	N/A&nbsp;
Size:	19.1 KB&nbsp;
ID:	5078"/></a>
&nbsp;

			</div>
		</fieldset>
	

	

	

	

	</div>
]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?23-Looking-for-such-a-script-or-service">Looking for such a script or service</category>
			<dc:creator>webill</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?74109-Script-to-show-automatically-opening-times-of-the-day</guid>
		</item>
	</channel>
</rss>
