<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>aip solutions developer's blog &#187; HTML &amp; XHTML</title>
	<atom:link href="http://blog.aip-solutions.com/category/html-xhtml/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.aip-solutions.com</link>
	<description>aip solutions developer's blog</description>
	<lastBuildDate>Thu, 15 Jul 2010 10:46:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Vertical aligned image in link</title>
		<link>http://blog.aip-solutions.com/378/vertical-aligned-image-in-link/</link>
		<comments>http://blog.aip-solutions.com/378/vertical-aligned-image-in-link/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 10:46:36 +0000</pubDate>
		<dc:creator>mili</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML & XHTML]]></category>

		<guid isPermaLink="false">http://blog.aip-solutions.com/?p=378</guid>
		<description><![CDATA[Use next code:
HTML

&#60;a href="" title=""&#62;//new row
  &#60;img src="" alt"" /&#62;&#38;nbsp;//required space
&#60;/a&#62;

CSS

a      { position:relative;display:block;width:100px;height:100px;line-height:100px;
          text-decoration:none;font-size:0;text-align:center;vertical-align:middle; }

a img  { margin:auto;vertical-align:middle;  }

]]></description>
			<content:encoded><![CDATA[<p>Use next code:</p>
<p><strong>HTML</strong></p>
<pre>
&lt;a href="" title=""&gt;<em>//new row</em>
  &lt;img src="" alt"" /&gt;&amp;nbsp;<em>//required space</em>
&lt;/a&gt;
</pre>
<p><strong>CSS</strong></p>
<pre>
a      { position:relative;display:block;width:100px;height:100px;line-height:100px;
          text-decoration:none;font-size:0;text-align:center;vertical-align:middle; }

a img  { margin:auto;vertical-align:middle;  }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.aip-solutions.com/378/vertical-aligned-image-in-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE7 extra padding to button bug</title>
		<link>http://blog.aip-solutions.com/363/ie7-extra-padding-to-button-bug/</link>
		<comments>http://blog.aip-solutions.com/363/ie7-extra-padding-to-button-bug/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 08:58:36 +0000</pubDate>
		<dc:creator>mili</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML & XHTML]]></category>

		<guid isPermaLink="false">http://blog.aip-solutions.com/?p=363</guid>
		<description><![CDATA[To remove the extra padding you only need to set
CSS:
    button    {width: auto; overflow: visible;}
]]></description>
			<content:encoded><![CDATA[<p>To remove the extra padding you only need to set<br />
<strong>CSS:</strong></p>
<pre>    button    {width: auto; overflow: visible;}</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.aip-solutions.com/363/ie7-extra-padding-to-button-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting values: PX to EM</title>
		<link>http://blog.aip-solutions.com/359/converting-values-px-to-em/</link>
		<comments>http://blog.aip-solutions.com/359/converting-values-px-to-em/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 08:23:24 +0000</pubDate>
		<dc:creator>mili</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML & XHTML]]></category>

		<guid isPermaLink="false">http://blog.aip-solutions.com/?p=359</guid>
		<description><![CDATA[PXtoEM.com is a website that makes converting PX values to EM values easier.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://pxtoem.com/" target="_blank"><strong>PXtoEM.com</strong></a> is a website that makes <strong>converting PX values to EM values</strong> easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aip-solutions.com/359/converting-values-px-to-em/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating text element with not-common font in the HTML page.</title>
		<link>http://blog.aip-solutions.com/355/creating-text-element-with-not-common-font-in-the-html-page/</link>
		<comments>http://blog.aip-solutions.com/355/creating-text-element-with-not-common-font-in-the-html-page/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 06:34:09 +0000</pubDate>
		<dc:creator>Peter Assenov</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML & XHTML]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blog.aip-solutions.com/355/creating-text-element-with-not-common-font-in-the-html-page/</guid>
		<description><![CDATA[Solutions:
1. Define the font with CSS
+ will degrade gracefully to similar font
+ no implementation overhead
+ low bandwidth overhead
+ low maintenance cost
- works only if the visitor has the font installed
2. Use image
+ maximum UA/user agent/ compatibility
+ little implementation overhead
- not flexible- high maintenance cost
- bandwidth overhead /weight+connection/
- worse SEO and Accessibility /? questionable if title [...]]]></description>
			<content:encoded><![CDATA[<p>Solutions:<br />
<strong>1. Define the font with CSS</strong><br />
+ will degrade gracefully to similar font<br />
+ no implementation overhead<br />
+ low bandwidth overhead<br />
+ low maintenance cost<br />
- works only if the visitor has the font installed</p>
<p><strong>2. Use image</strong><br />
+ maximum UA/user agent/ compatibility<br />
+ little implementation overhead<br />
- not flexible- high maintenance cost<br />
- bandwidth overhead /weight+connection/<br />
- worse SEO and Accessibility /? questionable if title and alt attributes are used/</p>
<p><strong>3. CSS font download</strong><br />
+ can be used together with Solution 1<br />
+ little implementation overhead<br />
+ low bandwidth overhead<br />
+ low maintenance cost<br />
- CSS3 feature &#8211; poor UA support.<br />
- if the font is commercial &#8211; the rights to publish could be expensive</p>
<p><strong>4. Text drawing with vectors</strong><br />
+ good UA support.<br />
+ can be used together with Solution 1 or/and 3<br />
+ moderate bandwidth overhead<br />
+ low maintenance cost<br />
- requires JavaScript<br />
- modifies DOM tree- potentially could change the visual<br />
- high implementation overhead</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aip-solutions.com/355/creating-text-element-with-not-common-font-in-the-html-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>footer stick on bottom</title>
		<link>http://blog.aip-solutions.com/311/footer-stick-on-bottom-2/</link>
		<comments>http://blog.aip-solutions.com/311/footer-stick-on-bottom-2/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 10:27:14 +0000</pubDate>
		<dc:creator>mili</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML & XHTML]]></category>

		<guid isPermaLink="false">http://blog.aip-solutions.com/?p=311</guid>
		<description><![CDATA[DOCTYPE:
&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&#62;
&#60;html xmlns="http://www.w3.org/1999/xhtml"&#62;
CSS:
html,body    {min-height:100%;height:100%;}
.siteContent {position:relative;min-height:100%;_height:100%;}/*IE hack*/
.pageContent {padding:0 0 25px;}
.footer      {position:absolute;bottom:0;width:100%;height:25px;}
HTML:
&#60;html&#62;
&#60;body&#62;
    &#60;div class="siteContent"&#62;
        &#60;div class="pageContent"&#62;&#60;/div&#62;
        &#60;div class="footer"&#62;&#60;/div&#62;
    &#60;/div&#62;
&#60;/body&#62;
&#60;/html&#62;
BROWSERS:
IE6, IE7, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>DOCTYPE:</strong></p>
<pre>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;</pre>
<p><strong>CSS:</strong></p>
<pre>html,body    {min-height:100%;height:100%;}
.siteContent {position:relative;min-height:100%;_height:100%;}/*IE hack*/
.pageContent {padding:0 0 25px;}
.footer      {position:absolute;bottom:0;width:100%;height:25px;}</pre>
<p><strong>HTML:</strong></p>
<pre>&lt;html&gt;
&lt;body&gt;
    &lt;div class="siteContent"&gt;
        &lt;div class="pageContent"&gt;&lt;/div&gt;
        &lt;div class="footer"&gt;&lt;/div&gt;
    &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p><strong>BROWSERS:</strong><br />
IE6, IE7, IE8, FF2, FF3</p>
<p><strong>FLOATS:</strong><br />
yes</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aip-solutions.com/311/footer-stick-on-bottom-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Round corners with css &#8230; only!</title>
		<link>http://blog.aip-solutions.com/242/round-corners-with-only-css/</link>
		<comments>http://blog.aip-solutions.com/242/round-corners-with-only-css/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 08:51:10 +0000</pubDate>
		<dc:creator>mili</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML & XHTML]]></category>

		<guid isPermaLink="false">http://blog.aip-solutions.com/?p=242</guid>
		<description><![CDATA[One post inspired me to experiment with font-size and line-height. Here is the result of a few hours tests in IE6 and FF.
My result
Here is the CSS:
* 	{font-family:Arial,sans-serif;}

html,body{text-align:center;}

div	{position:relative;
         width:300px;
         margin:130px auto 0;padding:15px 0;
         background:black;
  [...]]]></description>
			<content:encoded><![CDATA[<p>One post inspired me to experiment with font-size and line-height. Here is the result of a few hours tests in IE6 and FF.</p>
<h2>My result</h2>
<p>Here is the CSS:</p>
<pre>* 	{font-family:Arial,sans-serif;}

html,body{text-align:center;}

div	{position:relative;
         width:300px;
         margin:130px auto 0;padding:15px 0;
         background:black;
        }

div p	{position:relative;
         min-height:22px;height:auto!important;height:22px;
         margin:0 -14px;padding:22px;
         border:solid 15px black;border-width:0 15px;
         background:white;
        }

em.absTL,
em.absTR,
em.absBL,
em.absBR {position:absolute;
          width:30px;height:30px;line-height:32px;
          padding:0;
          font-size:120px;
          text-indent:-6px;
          color:black;
          overflow:hidden;
         }
 em.absTL{top:0;left:-14px;}
 em.absTR{top:0;right:-14px;}
 em.absBL{bottom:0;left:-14px;}
 em.absBR{bottom:0;right:-14px;}</pre>
<p>And the HTML:</p>
<pre>&lt;div&gt;
	&lt;em class="absTL"&gt;&amp;bull;&lt;/em&gt;
	&lt;em class="absTR"&gt;&amp;bull;&lt;/em&gt;
	&lt;em class="absBL"&gt;&amp;bull;&lt;/em&gt;
	&lt;em class="absBR"&gt;&amp;bull;&lt;/em&gt;
 	&lt;p&gt;
 		Some dynamic content here &lt;br /&gt;
 		Some dynamic content here&lt;br /&gt;
 	&lt;/p&gt;
&lt;/div&gt;</pre>
<p>Preview:</p>
<p style="text-align: center;"><img class="size-full wp-image-270 aligncenter" src="http://blog.aip-solutions.com/wp-content/uploads/2009/08/roundcorners1.gif" alt="roundcorners1" width="365" height="157" /></p>
<h2>Specific notes</h2>
<p>1. div {<strong>vertical-align</strong>:top;} &#8211; IE6 don&#8217;t like it. The Internet Explorer 6 loses the em&#8217;s content;<br />
2. <strong>bold </strong>em-s &#8211; IE6 again don&#8217;t like it. The line-height is quite different from FF;<br />
3. other browsers &#8211; it works fine at least on IE6/7/8, FF3, Chrome, Opera, Safari.</p>
<h2>The post</h2>
<p>Thanks to Stu Nicholls and his post <a title="Curved Corners" href="http://www.cssplay.co.uk/boxes/curves.html" target="_blank">Curved Corners</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aip-solutions.com/242/round-corners-with-only-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of products &#8211; no tables, no floats</title>
		<link>http://blog.aip-solutions.com/238/list-of-products-no-tables-no-floats/</link>
		<comments>http://blog.aip-solutions.com/238/list-of-products-no-tables-no-floats/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 10:38:48 +0000</pubDate>
		<dc:creator>mili</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML & XHTML]]></category>

		<guid isPermaLink="false">http://blog.aip-solutions.com/?p=238</guid>
		<description><![CDATA[Check this post for a nice solution with unordered list &#8211; http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block/
]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Check this post for a nice solution with unordered list &#8211; <a href="http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block/" target="_blank">http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aip-solutions.com/238/list-of-products-no-tables-no-floats/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Useful add-ons</title>
		<link>http://blog.aip-solutions.com/231/useful-add-ons/</link>
		<comments>http://blog.aip-solutions.com/231/useful-add-ons/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 06:56:47 +0000</pubDate>
		<dc:creator>mili</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML & XHTML]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.aip-solutions.com/?p=231</guid>
		<description><![CDATA[This is a quick list of Add-ons in FF that I use:

Firebug - http://getfirebug.com/
IE Tab &#8211; https://addons.mozilla.org/en-US/firefox/addon/1419
MeasureIt -http://www.kevinfreitas.net/extensions/measureit/
ColorZilla &#8211; http://www.colorzilla.com/firefox/
Resizeable textarea &#8211; https://addons.mozilla.org/en-US/firefox/addon/3818
Web Developer &#8211; http://chrispederick.com/work/web-developer/
HTML Validator &#8211; http://users.skynet.be/mgueury/mozilla/
CSS Validator &#8211; http://www.nu22.com/firefox/cssvalidator/
Operator - http://www.kaply.com/weblog/operator/
Tails Export &#8211; https://addons.mozilla.org/en-US/firefox/addon/2240?id=2240
ShowIP - http://code.google.com/p/firefox-showip/
YSlow - http://developer.yahoo.com/yslow/

]]></description>
			<content:encoded><![CDATA[<p>This is a quick list of Add-ons in FF that I use:</p>
<ol>
<li><strong>Firebug </strong>- <a href="http://getfirebug.com/" target="_blank">http://getfirebug.com/</a></li>
<li><strong>IE Tab</strong> &#8211; <a href="https://addons.mozilla.org/en-US/firefox/addon/1419" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/1419</a></li>
<li><strong>MeasureIt</strong> -<a href="http://www.kevinfreitas.net/extensions/measureit/" target="_blank">http://www.kevinfreitas.net/extensions/measureit/</a></li>
<li><strong>ColorZilla</strong> &#8211; <a href="http://www.colorzilla.com/firefox/" target="_blank">http://www.colorzilla.com/firefox/</a></li>
<li><strong>Resizeable textarea</strong> &#8211; <a href="https://addons.mozilla.org/en-US/firefox/addon/3818" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/3818</a></li>
<li><strong>Web Developer</strong> &#8211; <a href="http://chrispederick.com/work/web-developer/" target="_blank">http://chrispederick.com/work/web-developer/</a></li>
<li><strong>HTML Validator</strong> &#8211; <a href="http://users.skynet.be/mgueury/mozilla/" target="_blank">http://users.skynet.be/mgueury/mozilla/</a></li>
<li><strong>CSS Validator</strong> &#8211; <a href="http://www.nu22.com/firefox/cssvalidator/" target="_blank">http://www.nu22.com/firefox/cssvalidator/</a></li>
<li><strong>Operator </strong>- <a href="http://www.kaply.com/weblog/operator/" target="_blank">http://www.kaply.com/weblog/operator/</a></li>
<li><strong>Tails Export</strong> &#8211; <a href="https://addons.mozilla.org/en-US/firefox/addon/2240?id=2240" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/2240?id=2240</a></li>
<li><strong>ShowIP </strong>- <a href="http://code.google.com/p/firefox-showip/" target="_blank">http://code.google.com/p/firefox-showip/</a></li>
<li><strong>YSlow </strong>- <a href="http://developer.yahoo.com/yslow/" target="_blank">http://developer.yahoo.com/yslow/</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.aip-solutions.com/231/useful-add-ons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Footer stick on bottom with css</title>
		<link>http://blog.aip-solutions.com/103/footer-stick-on-bottom/</link>
		<comments>http://blog.aip-solutions.com/103/footer-stick-on-bottom/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 09:47:58 +0000</pubDate>
		<dc:creator>mili</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML & XHTML]]></category>

		<guid isPermaLink="false">http://blog.aip-solutions.com/?p=103</guid>
		<description><![CDATA[A few weeks ago I found in Internet two beautiful posts to footer stick &#8211; lucky accident considering the huge information in the web. And lucky me, if you can imagine how long I&#8217;ve been trying to find out how to avoid using tables for layout. Even if it is only to stick the footer [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I found in Internet two beautiful posts to footer stick &#8211; lucky accident considering the huge information in the web. And lucky me, if you can imagine how long I&#8217;ve been trying to find out how to avoid using tables for layout. Even if it is only to stick the footer on bottom of the page.</p>
<h2>Stop using tables!</h2>
<p>Except for table-data of course <img src='http://blog.aip-solutions.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>In the web you can find several ways to stick the footer without table (with height 100%). Some of them are based on JavaScript and often they are  quite complicate. Others used long and messy hacks or a lot of extra HTML markup and the solution is confusing.</p>
<p>Now I want to say &#8216;Thank you for the really simple and working methods!&#8217; to <a href="http://www.bobbyvandersluis.com/">Bobby van der Sluis</a> and to <a href="http://ryanfait.com">Ryan Fait</a>.</p>
<p>At first I thought that these methods work only in XHTML, but today I tested both solutions in different doctypes and they &#8230;</p>
<h2>Work fine in (X)HTML and IE6, IE7, FF, Opera, Safari &amp; Chrome</h2>
<p>Here is the list of doctypes tested in Internet Explorer 6,   Internet Explorer 7, Mozilla Firefox 3.0.6, Opera, Safari for Mac and Google Chrome:</p>
<ul>
<li>HTML 4.01 Transitional</li>
<li>HTML 4.01 Strict</li>
<li>HTML 4.01 Frameset</li>
<li>XHTML 1.0 Transitional</li>
<li>XHTML 1.0 Strict</li>
<li>XHTML 1.0 Frameset</li>
<li>XHTML 1.1</li>
</ul>
<h2>Resource 1: A List Apart</h2>
<p>Bobby van der Sluis has described the problem with the footer since 2004. In his article <a href="http://www.alistapart.com/articles/footers/">Exploring Footers</a> he represents the JavaScript solution because of IE5 bug.<br />
Although, his simple CSS method works in IE and FF, so here is the code:</p>
<pre>html, body { height:100%; }
#container { position:relative; min-height:100%; }
#footer    { position:absolute; bottom:0; }</pre>
<pre>&lt;div id="container"&gt;
    &lt;div id="content"&gt;...&lt;/div&gt;
    &lt;div id="footer"&gt;...&lt;/div&gt;
&lt;/div&gt;</pre>
<h2>Resource 2: Las Vegas Web Design</h2>
<p>The second nice post on this topic is <a href="http://ryanfait.com/resources/footer-stick-to-bottom-of-page/">Make the Footer Stick to the Bottom of a Page</a> by Ryan Fait. It is really short and understandable resource. Here  I have to mention that some times in Internet Explorer there is a little bug &#8211; it is possible to appear vertical scrollbar when you resize the browser&#8217;s window.<br />
Here is the code:</p>
<pre>* 	        { margin:0; }
html,body { height:100%; }
.wrapper  { min-height:100%; height:auto!important; height:100%; margin:0 auto -4em; }
.footer,
.push     { height: 4em; }</pre>
<pre>&lt;div <em>class="wrapper"</em>&gt;
    &lt;p&gt;Your website content here.&lt;/p&gt;
   &lt;div <em>class="push"</em>&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div <em>class="footer"</em>&gt;
    &lt;p&gt;Copyright (c) 2008&lt;/p&gt;
&lt;/div&gt;</pre>
<h2>Floating content problem</h2>
<p>Maybe it will be a problem using floating elements in the main content (before footer). So you can check for more information the site <a href="http://www.cssstickyfooter.com/using-sticky-footer-code.html">www.cssstickyfooter.com</a> and the post with many comments <a href="http://stever.ca/web-design/css-sticky-footer/">A CSS Sticky Footer that Works in 2009 (Chrome too)</a> &#8211; both by <a href="http://stever.ca/about/">Steve Hatcher</a>.</p>
<p>In my next web project I&#8217;ll test that and post here.</p>
<h2>Updates</h2>
<p>2009-09-28: I&#8217;ve just added new post with my own solution for XHTML <a href="http://blog.aip-solutions.com/311/footer-stick-on-bottom-2/">http://blog.aip-solutions.com/311/footer-stick-on-bottom-2/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aip-solutions.com/103/footer-stick-on-bottom/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>
