<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Help with writting HTML please?</title>
	<atom:link href="http://www.mgorilla.com/lowland-gorilla/help-with-writting-html-please/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mgorilla.com/lowland-gorilla/help-with-writting-html-please</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 09:14:59 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: PayneLessDesigns.com</title>
		<link>http://www.mgorilla.com/lowland-gorilla/help-with-writting-html-please/comment-page-1#comment-2107</link>
		<dc:creator>PayneLessDesigns.com</dc:creator>
		<pubDate>Wed, 21 Oct 2009 00:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mgorilla.com/lowland-gorilla/help-with-writting-html-please#comment-2107</guid>
		<description>1.) &lt;a href=&quot;http://www.google.com/&quot; title=&quot;Google&quot;&gt;Google&lt;/a&gt;

2.) Make sure you have the correct name for your image along with the extension.  Use lowercase letters: gorilla.jpg.

&lt;div id=&quot;container&quot;&gt;&lt;img src=&quot;gorilla.jpg&quot; alt=&quot;Gorilla&quot; title=&quot;Gorilla&quot;&gt;&lt;/div&gt;

There is no closing tag for the image tag.  If you have a XHTML 1.0 Strict document type, then you need to close all tags that don&#039;t use closing tags like this:

&lt;div id=&quot;container&quot;&gt;&lt;img src=&quot;gorilla.jpg&quot; alt=&quot;Gorilla&quot; title=&quot;Gorilla&quot; /&gt;&lt;/div&gt;

Be sure you put a space in  front of the &quot; / &quot;.

3.  I&#039;m am going to take it you have a non-tileable image that you want as your page&#039;s background image.  I&#039;m gonna assume you want the page contents to scroll over the image without image moving.  I&#039;m also assuming that your image is large enough for a decent bg image:

&lt;head&gt;
&lt;style type=&quot;text/css&quot;&gt;
body {
background: #fff url(image_name.jpg) no-repeat center fixed;
}
&lt;/style&gt;
&lt;/head&gt;

That&#039;s the basic way.

Ron&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;Web Designer
http://PayneLessDesigns.com/</description>
		<content:encoded><![CDATA[<p>1.) &lt;a href=&quot;http://www.google.com/&quot; title=&quot;Google&quot;&gt;Google&lt;/a&gt;</p>
<p>2.) Make sure you have the correct name for your image along with the extension.  Use lowercase letters: gorilla.jpg.</p>
<p>&lt;div id=&quot;container&quot;&gt;&lt;img src=&quot;gorilla.jpg&quot; alt=&quot;Gorilla&quot; title=&quot;Gorilla&quot;&gt;&lt;/div&gt;</p>
<p>There is no closing tag for the image tag.  If you have a XHTML 1.0 Strict document type, then you need to close all tags that don&#8217;t use closing tags like this:</p>
<p>&lt;div id=&quot;container&quot;&gt;&lt;img src=&quot;gorilla.jpg&quot; alt=&quot;Gorilla&quot; title=&quot;Gorilla&quot; /&gt;&lt;/div&gt;</p>
<p>Be sure you put a space in  front of the &quot; / &quot;.</p>
<p>3.  I&#8217;m am going to take it you have a non-tileable image that you want as your page&#8217;s background image.  I&#8217;m gonna assume you want the page contents to scroll over the image without image moving.  I&#8217;m also assuming that your image is large enough for a decent bg image:</p>
<p>&lt;head&gt;<br />
&lt;style type=&quot;text/css&quot;&gt;<br />
body {<br />
background: #fff url(image_name.jpg) no-repeat center fixed;<br />
}<br />
&lt;/style&gt;<br />
&lt;/head&gt;</p>
<p>That&#8217;s the basic way.</p>
<p>Ron<br /><b>References : </b><br />Web Designer<br />
<a href="http://PayneLessDesigns.com/" rel="nofollow">http://PayneLessDesigns.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fjpoblam</title>
		<link>http://www.mgorilla.com/lowland-gorilla/help-with-writting-html-please/comment-page-1#comment-2106</link>
		<dc:creator>fjpoblam</dc:creator>
		<pubDate>Wed, 21 Oct 2009 00:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mgorilla.com/lowland-gorilla/help-with-writting-html-please#comment-2106</guid>
		<description>1. Nothing, if you want to link to the search page...?
2. .jpg ... A better form would be, to be sure you place &quot;alt&quot; and &quot;height&quot; and &quot;width&quot; attributes (so the browser will know in advance what space to reserve, and so there will be text in case the image doesn&#039;t load...) and to omit the closing tag and instead place a closing slash. Hence:
&lt;img src=&quot;gorilla.jpg&quot; alt=&quot;This is a gorilla&quot; height=&quot;54&quot; width=&quot;54&quot; /&gt;
3. Use css. One way is, in the &lt;head&gt; section, place:
&lt;style type=&quot;text/css&quot;&gt;
body { background-image: url(&quot;whatever.png&quot;); background-position: center center; background-repeat: no-repeat; background-attachment: fixed; }
&lt;/style&gt;&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>1. Nothing, if you want to link to the search page&#8230;?<br />
2. .jpg &#8230; A better form would be, to be sure you place &quot;alt&quot; and &quot;height&quot; and &quot;width&quot; attributes (so the browser will know in advance what space to reserve, and so there will be text in case the image doesn&#8217;t load&#8230;) and to omit the closing tag and instead place a closing slash. Hence:<br />
&lt;img src=&quot;gorilla.jpg&quot; alt=&quot;This is a gorilla&quot; height=&quot;54&quot; width=&quot;54&quot; /&gt;<br />
3. Use css. One way is, in the &lt;head&gt; section, place:<br />
&lt;style type=&quot;text/css&quot;&gt;<br />
body { background-image: url(&quot;whatever.png&quot;); background-position: center center; background-repeat: no-repeat; background-attachment: fixed; }<br />
&lt;/style&gt;<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://www.mgorilla.com/lowland-gorilla/help-with-writting-html-please/comment-page-1#comment-2105</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Wed, 21 Oct 2009 00:10:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mgorilla.com/lowland-gorilla/help-with-writting-html-please#comment-2105</guid>
		<description>1. That looks good. 
2. &lt;img src&#039;&quot;Gorilla.jpeg&quot; /&gt;
3. background is best altered by using a CSS. Find a turtorial on CSS and modify a background tag. This is to prevent your &lt;body&gt; tag from becoming too long to easily read.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>1. That looks good.<br />
2. &lt;img src&#8217;&quot;Gorilla.jpeg&quot; /&gt;<br />
3. background is best altered by using a CSS. Find a turtorial on CSS and modify a background tag. This is to prevent your &lt;body&gt; tag from becoming too long to easily read.<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cris</title>
		<link>http://www.mgorilla.com/lowland-gorilla/help-with-writting-html-please/comment-page-1#comment-2104</link>
		<dc:creator>Cris</dc:creator>
		<pubDate>Tue, 20 Oct 2009 23:50:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mgorilla.com/lowland-gorilla/help-with-writting-html-please#comment-2104</guid>
		<description>1.  href isnt caps 

2. picture needs to be switched to gorilla.jpg

3. &lt;bg=img src=&quot;insertimg.jpg&quot;&gt;&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>1.  href isnt caps </p>
<p>2. picture needs to be switched to gorilla.jpg</p>
<p>3. &lt;bg=img src=&quot;insertimg.jpg&quot;&gt;<br /><b>References : </b></p>
]]></content:encoded>
	</item>
</channel>
</rss>

