<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Topic: need help with adding a background image for the main area</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 19 May 2013 22:45:34 +0000</pubDate>

<item>
<title>hollifischer on "need help with adding a background image for the main area"</title>
<link>http://themeshaper.com/forums/topic/need-help-with-adding-a-background-image-for-the-main-area#post-26959</link>
<pubDate>Thu, 10 May 2012 22:16:49 +0000</pubDate>
<dc:creator>hollifischer</dc:creator>
<guid isPermaLink="false">26959@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;thank you very much it worked
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "need help with adding a background image for the main area"</title>
<link>http://themeshaper.com/forums/topic/need-help-with-adding-a-background-image-for-the-main-area#post-26957</link>
<pubDate>Thu, 10 May 2012 21:35:25 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">26957@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Currently you have&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#main {
    background:url(images/content_bg.png) no repeat #f1f1d9;
    clear:both;
    padding:50px 0 22px 0;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;However, shorthand properties are a little finicky and will flat out not work if they are incorrect. You want to probably be using the background color in front of the image per &#60;a href=&#34;https://developer.mozilla.org/en/CSS/Shorthand_properties&#34; rel=&#34;nofollow&#34;&#62;https://developer.mozilla.org/en/CSS/Shorthand_properties&#60;/a&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#main {
    background: #f1f1d9 url(images/content_bg.png) no-repeat;
    clear:both;
    padding:50px 0 22px 0;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So close. :)
&#60;/p&#62;</description>
</item>
<item>
<title>hollifischer on "need help with adding a background image for the main area"</title>
<link>http://themeshaper.com/forums/topic/need-help-with-adding-a-background-image-for-the-main-area#post-26956</link>
<pubDate>Thu, 10 May 2012 20:23:02 +0000</pubDate>
<dc:creator>hollifischer</dc:creator>
<guid isPermaLink="false">26956@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I fixed that where it said for the container. Didn't work. So, I put it under #main. Double check the path was correct. And it still is not showing up
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "need help with adding a background image for the main area"</title>
<link>http://themeshaper.com/forums/topic/need-help-with-adding-a-background-image-for-the-main-area#post-26849</link>
<pubDate>Sun, 06 May 2012 23:50:09 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">26849@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It looks like you are trying to stick something to the #container. In there you have&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#container {
  background: url(images/content_bg.png) no repeat #f1f1d9;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You have a double semicolon, not sure what error this will produce, but it is not correct. If you are trying to stick things to the #container, it is currently collapsed which is what happens when you use floats inside it, the height collapses. Use #main.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "need help with adding a background image for the main area"</title>
<link>http://themeshaper.com/forums/topic/need-help-with-adding-a-background-image-for-the-main-area#post-26848</link>
<pubDate>Sun, 06 May 2012 22:35:01 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26848@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yeah i'm not following what the problem is.  currently, according to chrome's dev tools (inspects the html/css elements) you don't have any background image attached to #main, so there isn't anything to display.  have to agree w/ scott's request for more details.  if you have done as scott suggested and don't see an image, be sure that 1. the image is uploaded to the live server and 2. your path to the image is correct
&#60;/p&#62;</description>
</item>
<item>
<title>hollifischer on "need help with adding a background image for the main area"</title>
<link>http://themeshaper.com/forums/topic/need-help-with-adding-a-background-image-for-the-main-area#post-26847</link>
<pubDate>Sun, 06 May 2012 22:18:09 +0000</pubDate>
<dc:creator>hollifischer</dc:creator>
<guid isPermaLink="false">26847@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i did that and it is not showing up for some reason.
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "need help with adding a background image for the main area"</title>
<link>http://themeshaper.com/forums/topic/need-help-with-adding-a-background-image-for-the-main-area#post-26846</link>
<pubDate>Sun, 06 May 2012 21:43:39 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">26846@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You are probably going to have to be more specific on what problem you are having. I say that based on the fact you got an image in the header, why wouldn't you be able to do the same on the #main div?&#60;/p&#62;
&#60;p&#62;Header&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#header {
    background:url(images/hdr_bg.jpg) repeat-x;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Main&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#main {
    background:url(images/some-bad-ass-image.jpg) no-repeat;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I can only assume you are having a different problem.
&#60;/p&#62;</description>
</item>
<item>
<title>hollifischer on "need help with adding a background image for the main area"</title>
<link>http://themeshaper.com/forums/topic/need-help-with-adding-a-background-image-for-the-main-area#post-26845</link>
<pubDate>Sun, 06 May 2012 21:30:48 +0000</pubDate>
<dc:creator>hollifischer</dc:creator>
<guid isPermaLink="false">26845@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This is my first time working with thematic. Yes I am using the sample child theme. I would like to add a background image for #main since it encompasses both the content and sidebar areas. The background image is really just for the top and than no repeating, just a color that matches the image for the rest of the area. &#60;/p&#62;
&#60;p&#62;I am just beginning to work on this so I know there is still a lot to be done.&#60;/p&#62;
&#60;p&#62;here is the link: &#60;a href=&#34;http://test9.hafdesign.com&#34;&#62;http://test9.hafdesign.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
