
 
 
<?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: How to Make a Repeatable Background on Your Wikispace Using CSS</title>
	<atom:link href="http://wikispacetutorials.com/how-to-make-a-repeatable-background-on-your-wikispace-using-css/feed" rel="self" type="application/rss+xml" />
	<link>http://wikispacetutorials.com/how-to-make-a-repeatable-background-on-your-wikispace-using-css</link>
	<description>Your online resource for great wikispace tutorials.</description>
	<lastBuildDate>Sat, 26 Jun 2010 03:43:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: admin</title>
		<link>http://wikispacetutorials.com/how-to-make-a-repeatable-background-on-your-wikispace-using-css/comment-page-1#comment-30</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 16 Aug 2009 19:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://wikispacetutorials.com/?p=275#comment-30</guid>
		<description>Hey Efren, thanks for your question.  I&#039;m glad you asked because I didn&#039;t really clarify what type of picture it needs to be in the video.  Really, the picture needs to be one of these 3 file types: &lt;strong&gt;.jpg&lt;/strong&gt;, &lt;strong&gt;.png&lt;/strong&gt;, or &lt;strong&gt;.gif&lt;/strong&gt;.  Any one of those 3 will work.  Let me give you an example on what the CSS should look like when adding a repeatable background for the body selector in your wikispace template...

&lt;pre&gt;&lt;code&gt;
body { 
background: url(/file/view/yourimage.jpg) repeat; 
}
&lt;/code&gt;&lt;/pre&gt;

Wikispaces has already declared the background property for the body selector within the template that you&#039;re using.  So, before you add your repeatable background CSS to the background property that they&#039;ve already included, you can either delete what they&#039;ve already included for the background, or you can just hide it.  

If you delete what&#039;s been included in the background property, it should look like this...

&lt;pre&gt;&lt;code&gt;
body { 
background: 
}
&lt;/code&gt;&lt;/pre&gt;

If you want to hide the background property that they&#039;ve already included, you can do that by adding a /* and then at the end, adding a */, like this...

&lt;pre&gt;&lt;code&gt;
body {
/* background-color: &lt;$WikiBackgroundColor$&gt;; */
background: url(/file/view/yourimage.png) repeat;     /* &lt;--- your background CSS here */
}
&lt;/code&gt;&lt;/pre&gt;

Anything included in between /* and */ will be hidden.  So, I put a /* before the &lt;strong&gt;background-color&lt;/strong&gt; selector, and then put a */ at the very end, after the semi-colon.  Does that make sense?  Let me know if you&#039;re still having issues.</description>
		<content:encoded><![CDATA[<p>Hey Efren, thanks for your question.  I&#8217;m glad you asked because I didn&#8217;t really clarify what type of picture it needs to be in the video.  Really, the picture needs to be one of these 3 file types: <strong>.jpg</strong>, <strong>.png</strong>, or <strong>.gif</strong>.  Any one of those 3 will work.  Let me give you an example on what the CSS should look like when adding a repeatable background for the body selector in your wikispace template&#8230;</p>
<pre><code>
body {
background: url(/file/view/yourimage.jpg) repeat;
}
</code></pre>
<p>Wikispaces has already declared the background property for the body selector within the template that you&#8217;re using.  So, before you add your repeatable background CSS to the background property that they&#8217;ve already included, you can either delete what they&#8217;ve already included for the background, or you can just hide it.  </p>
<p>If you delete what&#8217;s been included in the background property, it should look like this&#8230;</p>
<pre><code>
body {
background:
}
</code></pre>
<p>If you want to hide the background property that they&#8217;ve already included, you can do that by adding a /* and then at the end, adding a */, like this&#8230;</p>
<pre><code>
body {
/* background-color: < $WikiBackgroundColor$>; */
background: url(/file/view/yourimage.png) repeat;     /* < --- your background CSS here */
}
</code></code></pre>
<p>Anything included in between /* and */ will be hidden.  So, I put a /* before the <strong>background-color</strong> selector, and then put a */ at the very end, after the semi-colon.  Does that make sense?  Let me know if you're still having issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EfrenR</title>
		<link>http://wikispacetutorials.com/how-to-make-a-repeatable-background-on-your-wikispace-using-css/comment-page-1#comment-28</link>
		<dc:creator>EfrenR</dc:creator>
		<pubDate>Sun, 16 Aug 2009 06:39:49 +0000</pubDate>
		<guid isPermaLink="false">http://wikispacetutorials.com/?p=275#comment-28</guid>
		<description>Does the picture have to be a certain type? Of a given parameter?  Not seeing picture on background.  Thanks</description>
		<content:encoded><![CDATA[<p>Does the picture have to be a certain type? Of a given parameter?  Not seeing picture on background.  Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
