<?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 Tag: background</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Mon, 20 May 2013 13:18:56 +0000</pubDate>

<item>
<title>optriro on "Weirdness with background colors"</title>
<link>http://themeshaper.com/forums/topic/weirdness-with-background-colors#post-23723</link>
<pubDate>Sun, 06 Nov 2011 19:11:10 +0000</pubDate>
<dc:creator>optriro</dc:creator>
<guid isPermaLink="false">23723@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Well, the stylesheet says #content has #FEF983 for background color, which is clearly a pale yellow, so you might want to check that first. The rest of the site has a white background as far as I can see.&#60;br /&#62;
Don't know what could cause them to have different backgrounds if the stylesheets are in fact identical.
&#60;/p&#62;</description>
</item>
<item>
<title>crashprojects on "Weirdness with background colors"</title>
<link>http://themeshaper.com/forums/topic/weirdness-with-background-colors#post-23717</link>
<pubDate>Sat, 05 Nov 2011 22:56:06 +0000</pubDate>
<dc:creator>crashprojects</dc:creator>
<guid isPermaLink="false">23717@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Here's the url of the site I'm talking about:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://stage.brazilstation.com.&#34; rel=&#34;nofollow&#34;&#62;http://stage.brazilstation.com.&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I have this running locally and the entire background is white. This live version is yellow. The style sheets are identical.&#60;/p&#62;
&#60;p&#62;Any ideas? &#60;/p&#62;
&#60;p&#62;Thanks for reading.
&#60;/p&#62;</description>
</item>
<item>
<title>bluejpro on "Equal height columns with Thematic"</title>
<link>http://themeshaper.com/forums/topic/equal-height-columns-with-thematic#post-23555</link>
<pubDate>Fri, 21 Oct 2011 18:49:35 +0000</pubDate>
<dc:creator>bluejpro</dc:creator>
<guid isPermaLink="false">23555@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Oh my that was easier to solve than I thought.&#60;/p&#62;
&#60;p&#62;In my case using #secondary instead of #primary created equal height columns and allows a background image behind #page to extend all the way to the footer:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function my_scripts() { ?&#38;gt;
    &#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
    jQuery.noConflict();
    function equalHeight(group) {
        tallest = 0;
        group.each(function() {
            thisHeight = jQuery(this).height();
            if(thisHeight &#38;gt; tallest) {
                tallest = thisHeight;
            }
        });
        group.height(tallest);
    }
    jQuery(document).ready(function() {
	equalHeight(jQuery(&#38;quot;#content,#secondary&#38;quot;));
    });
    &#38;lt;/script&#38;gt;

&#38;lt;?php }
add_action(&#38;#39;wp_head&#38;#39;,&#38;#39;my_scripts&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This solves the problem of the background image looking cut off on pages where the sidebar is longer than the content area.&#60;/p&#62;
&#60;p&#62;Thank you Chris the Moderator and lindathep for posting this function.&#60;/p&#62;
&#60;p&#62;(it's awesome)
&#60;/p&#62;</description>
</item>
<item>
<title>bluejpro on "Equal height columns with Thematic"</title>
<link>http://themeshaper.com/forums/topic/equal-height-columns-with-thematic#post-23552</link>
<pubDate>Fri, 21 Oct 2011 17:56:40 +0000</pubDate>
<dc:creator>bluejpro</dc:creator>
<guid isPermaLink="false">23552@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for posting this &#60;/p&#62;
&#60;p&#62;I am desperately trying to get #content and #primary to have same height also.  Not working in current Thematic - any help?
&#60;/p&#62;</description>
</item>
<item>
<title>oakview on "Access bar backgroung JUMPS to the top (1 post)"</title>
<link>http://themeshaper.com/forums/topic/access-bar-backgroung-jumps-to-the-top-1-post#post-23404</link>
<pubDate>Mon, 10 Oct 2011 01:59:39 +0000</pubDate>
<dc:creator>oakview</dc:creator>
<guid isPermaLink="false">23404@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You might try including an H1 tag inside the div and style the H1 tag uniquely in your CSS file so it doesn't jump around. Dunno if that will work, didn't try it. I would imagine you'll need to remove any clearing, margins, etc. and make the width fixed.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;blog-description&#38;quot;&#38;gt;&#38;lt;h1 id=&#38;quot;my-description&#38;quot;&#38;gt;&#38;lt;?php bloginfo(&#38;#39;description&#38;#39;) ?&#38;gt;&#38;lt;/h1&#38;gt;&#38;lt;/div&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>omarelmasry on "Access bar backgroung JUMPS to the top (1 post)"</title>
<link>http://themeshaper.com/forums/topic/access-bar-backgroung-jumps-to-the-top-1-post#post-23377</link>
<pubDate>Fri, 07 Oct 2011 17:03:42 +0000</pubDate>
<dc:creator>omarelmasry</dc:creator>
<guid isPermaLink="false">23377@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thank you oakview ... although that solution drops the SEO advantage, but it worked perfectly :) :) ... just some css afterwards and the page looks goooood :D
&#60;/p&#62;</description>
</item>
<item>
<title>oakview on "Access bar backgroung JUMPS to the top (1 post)"</title>
<link>http://themeshaper.com/forums/topic/access-bar-backgroung-jumps-to-the-top-1-post#post-23346</link>
<pubDate>Wed, 05 Oct 2011 02:42:54 +0000</pubDate>
<dc:creator>oakview</dc:creator>
<guid isPermaLink="false">23346@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I had a similar problem, but can't recall if it also involved the access bar, though I know it affected the blog description. I added the code below to my child theme function file and... problem solved. You might try this and see if it helps you, or at least sends you down the path to a solution.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//First, remove the existing blog decription
function remove_blogdescription() {
   remove_action(&#38;#39;thematic_header&#38;#39;, &#38;#39;thematic_blogdescription&#38;#39;, 5);
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;remove_blogdescription&#38;#39;);

// Then, always wrap the blog description in a div
function my_blogdescription()
{ ?&#38;gt;
	&#38;lt;div id=&#38;quot;blog-description&#38;quot;&#38;gt;&#38;lt;?php bloginfo(&#38;#39;description&#38;#39;) ?&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;?php }

add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;my_blogdescription&#38;#39;,5);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>helgatheviking on "Access bar backgroung JUMPS to the top (1 post)"</title>
<link>http://themeshaper.com/forums/topic/access-bar-backgroung-jumps-to-the-top-1-post#post-23341</link>
<pubDate>Tue, 04 Oct 2011 18:04:35 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23341@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;do what scott suggests and get it live somewhere.  we can probably fix it in a few minutes.  &#60;/p&#62;
&#60;p&#62;sidenote- the 'weird' look you are seeing w/ blog description doesn't happen by default... so i'd look closely at the changes you have made and how you differ from the default layout.
&#60;/p&#62;</description>
</item>
<item>
<title>omarelmasry on "Access bar backgroung JUMPS to the top (1 post)"</title>
<link>http://themeshaper.com/forums/topic/access-bar-backgroung-jumps-to-the-top-1-post#post-23340</link>
<pubDate>Tue, 04 Oct 2011 17:20:56 +0000</pubDate>
<dc:creator>omarelmasry</dc:creator>
<guid isPermaLink="false">23340@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@middlesister:  yessss .. you're getting so close :&#60;/p&#62;
&#60;p&#62;after you mentioned the SEO thing, I tried adding a blog description to see what happens , I discovered that the blog description on pages other than the home converts to a div , and jumps to become beside the title :( ...&#60;/p&#62;
&#60;p&#62;I tried styling blog-description ... a bottom margin doesn't solve it ... and I tried styling it with display:block ... nothing happens (i guess it had that style in the first place ) ... &#60;/p&#62;
&#60;p&#62;I also tried removing the blog description using a function ... but that resulted that the home page, too, looks wacky like the others .... &#60;/p&#62;
&#60;p&#62;if you can, pleeeease help with the case that a blog description exists :).... any other ideas for it??
&#60;/p&#62;</description>
</item>
<item>
<title>middlesister on "Access bar backgroung JUMPS to the top (1 post)"</title>
<link>http://themeshaper.com/forums/topic/access-bar-backgroung-jumps-to-the-top-1-post#post-23338</link>
<pubDate>Tue, 04 Oct 2011 08:35:29 +0000</pubDate>
<dc:creator>middlesister</dc:creator>
<guid isPermaLink="false">23338@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This might have to do with a SEO feature of thematic. On the home page, your blog description is wrapped in a h1. But on all other pages it is a normal div and the h1 is the page title of the content. This is for search engine reasons since they give extra weight to the headings and there can only be one h1 element in a html4/xhtml1 document.&#60;/p&#62;
&#60;p&#62;Of you haven't styled #blog-description specifically, then the extra bottom margin on h1 elements will disappear on all other pages since the h1 is now a div. I don't see a blog description in your picture, but if you haven't removed it through functions.php but used display:none to hide it, then I suspect this is the issue. Try giving #blog-description a bottom margin.
&#60;/p&#62;</description>
</item>
<item>
<title>omarelmasry on "Access bar backgroung JUMPS to the top (1 post)"</title>
<link>http://themeshaper.com/forums/topic/access-bar-backgroung-jumps-to-the-top-1-post#post-23332</link>
<pubDate>Mon, 03 Oct 2011 23:41:01 +0000</pubDate>
<dc:creator>omarelmasry</dc:creator>
<guid isPermaLink="false">23332@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;this is my first website ... i am working on localhost ... i am not familiar with hosting yet :( ...&#60;br /&#62;
BUT ... why does the style alter on other pages although they are reading the same style sheet???
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "Access bar backgroung JUMPS to the top (1 post)"</title>
<link>http://themeshaper.com/forums/topic/access-bar-backgroung-jumps-to-the-top-1-post#post-23328</link>
<pubDate>Mon, 03 Oct 2011 21:16:09 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">23328@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;CSS like this is hard to troubleshoot without a live link. It looks like a clearing or float issue, but it is pretty much impossible to help with just images. If you have a link or temporary place to set it up, that would help a ton in getting someone to take a closer look.
&#60;/p&#62;</description>
</item>
<item>
<title>omarelmasry on "Access bar backgroung JUMPS to the top (1 post)"</title>
<link>http://themeshaper.com/forums/topic/access-bar-backgroung-jumps-to-the-top-1-post#post-23320</link>
<pubDate>Mon, 03 Oct 2011 08:31:28 +0000</pubDate>
<dc:creator>omarelmasry</dc:creator>
<guid isPermaLink="false">23320@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am using the thematic theme for my website ... I have designed the header, and it looks good on the home page as in this figure&#60;br /&#62;
&#60;a href=&#34;http://imageshack.us/photo/my-images/714/homekw.png/&#34; rel=&#34;nofollow&#34;&#62;http://imageshack.us/photo/my-images/714/homekw.png/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;... BUT on all pages other than the home, the background of the #access bar jumps to the top like that , and covers the title :(&#60;br /&#62;
&#60;a href=&#34;http://imageshack.us/photo/my-images/14/otherq.png/&#34; rel=&#34;nofollow&#34;&#62;http://imageshack.us/photo/my-images/14/otherq.png/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;although I am using the style sheet which is seen by all pages equally ...&#60;/p&#62;
&#60;p&#62;Why is that happening???
&#60;/p&#62;</description>
</item>
<item>
<title>craw on "gaps in sidebar and content"</title>
<link>http://themeshaper.com/forums/topic/gaps-in-sidebar-and-content#post-22721</link>
<pubDate>Tue, 16 Aug 2011 23:39:31 +0000</pubDate>
<dc:creator>craw</dc:creator>
<guid isPermaLink="false">22721@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks Scott and Helga! I'll give this a shot!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "gaps in sidebar and content"</title>
<link>http://themeshaper.com/forums/topic/gaps-in-sidebar-and-content#post-22711</link>
<pubDate>Tue, 16 Aug 2011 12:59:48 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22711@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;idk if this is no longer needed in light of scott's link, but i add&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* =new Clearfix &#60;a href=&#34;http://www.perishablepress.com&#34; rel=&#34;nofollow&#34;&#62;http://www.perishablepress.com&#60;/a&#62;
-------------------------------------------------------------- */
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: &#38;quot; &#38;quot;; clear: both; height: 0; }
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to every theme i build.  and add class=&#34;clearfix&#34; to any element container floats.
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "gaps in sidebar and content"</title>
<link>http://themeshaper.com/forums/topic/gaps-in-sidebar-and-content#post-22706</link>
<pubDate>Tue, 16 Aug 2011 04:13:08 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">22706@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It is just a clearing issue.&#60;/p&#62;
&#60;p&#62;Add to your CSS..&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#main { overflow: hidden; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For more info just visit &#60;a href=&#34;http://css-tricks.com/2833-the-css-overflow-property/&#34; rel=&#34;nofollow&#34;&#62;http://css-tricks.com/2833-the-css-overflow-property/&#60;/a&#62; and scroll down to &#34;Float Clearing&#34;.
&#60;/p&#62;</description>
</item>
<item>
<title>craw on "gaps in sidebar and content"</title>
<link>http://themeshaper.com/forums/topic/gaps-in-sidebar-and-content#post-22703</link>
<pubDate>Mon, 15 Aug 2011 18:40:01 +0000</pubDate>
<dc:creator>craw</dc:creator>
<guid isPermaLink="false">22703@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm building a child theme and I have an issue I can seem to resolve.&#60;/p&#62;
&#60;p&#62;When I have a sidebar with content longer than the &#34;content&#34; area, there is a gap in background color for the content area.&#60;/p&#62;
&#60;p&#62;Same goes if I have my sidebar in place and the content is longer than the sidebar- gap in background color.&#60;/p&#62;
&#60;p&#62;Here is a page that is a good example &#60;a href=&#34;http://bit.ly/n720ut&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/n720ut&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks for any help!
&#60;/p&#62;</description>
</item>
<item>
<title>daveread on "Different backgrounds on post"</title>
<link>http://themeshaper.com/forums/topic/different-backgrounds-on-post/page/2#post-22642</link>
<pubDate>Thu, 11 Aug 2011 20:25:28 +0000</pubDate>
<dc:creator>daveread</dc:creator>
<guid isPermaLink="false">22642@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks - will do (in a few hours)...
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Different backgrounds on post"</title>
<link>http://themeshaper.com/forums/topic/different-backgrounds-on-post/page/2#post-22641</link>
<pubDate>Thu, 11 Aug 2011 20:22:03 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22641@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;sounds like you are asking for something different.  try starting a new thread.  include what you want to do differently, what you've tried and the results you get versus the results you would like.
&#60;/p&#62;</description>
</item>
<item>
<title>daveread on "Different backgrounds on post"</title>
<link>http://themeshaper.com/forums/topic/different-backgrounds-on-post/page/2#post-22640</link>
<pubDate>Thu, 11 Aug 2011 20:02:46 +0000</pubDate>
<dc:creator>daveread</dc:creator>
<guid isPermaLink="false">22640@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Instead of setting body background via css, and using body classes to show various backgrounds, it could be done via childtheme function? If so, could you show an example of such a function? Thank you helgatheviking.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Different backgrounds on post"</title>
<link>http://themeshaper.com/forums/topic/different-backgrounds-on-post/page/2#post-22639</link>
<pubDate>Thu, 11 Aug 2011 19:50:52 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22639@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;where the function has an image you'd wrap it in a link
&#60;/p&#62;</description>
</item>
<item>
<title>daveread on "Different backgrounds on post"</title>
<link>http://themeshaper.com/forums/topic/different-backgrounds-on-post/page/2#post-22635</link>
<pubDate>Thu, 11 Aug 2011 17:39:56 +0000</pubDate>
<dc:creator>daveread</dc:creator>
<guid isPermaLink="false">22635@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Would there be a function for making the background image clickable?
&#60;/p&#62;</description>
</item>
<item>
<title>knowlsy on "'background-attachment: fixed' doesn't fix in menu etc..."</title>
<link>http://themeshaper.com/forums/topic/background-attachment-fixed-doesnt-fix-in-menu-etc#post-21454</link>
<pubDate>Tue, 24 May 2011 22:23:16 +0000</pubDate>
<dc:creator>knowlsy</dc:creator>
<guid isPermaLink="false">21454@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;not quite sure why I didn't think of a semi-transparent .png before now... *feels silly*&#60;/p&#62;
&#60;p&#62;THANKS!
&#60;/p&#62;</description>
</item>
<item>
<title>joperron on "'background-attachment: fixed' doesn't fix in menu etc..."</title>
<link>http://themeshaper.com/forums/topic/background-attachment-fixed-doesnt-fix-in-menu-etc#post-21453</link>
<pubDate>Tue, 24 May 2011 14:10:04 +0000</pubDate>
<dc:creator>joperron</dc:creator>
<guid isPermaLink="false">21453@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I suggest something like what helgatheviking said:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;sf-menu li a  { background: url(images/white-50-trans.png); }
sf-menu li a:hover { background: url(images/black-50-trans.png); }&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>helgatheviking on "'background-attachment: fixed' doesn't fix in menu etc..."</title>
<link>http://themeshaper.com/forums/topic/background-attachment-fixed-doesnt-fix-in-menu-etc#post-21443</link>
<pubDate>Tue, 24 May 2011 00:54:29 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">21443@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i don't follow.  try to get an example up somewhere.  even if it is at &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://jsfiddle.net/&#34; rel=&#34;nofollow&#34;&#62;http://jsfiddle.net/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;what about putting using a semi-transparent white png image as your background where you want this effect.  then it doesn't have to line up w/ the body background
&#60;/p&#62;</description>
</item>
<item>
<title>knowlsy on "'background-attachment: fixed' doesn't fix in menu etc..."</title>
<link>http://themeshaper.com/forums/topic/background-attachment-fixed-doesnt-fix-in-menu-etc#post-21441</link>
<pubDate>Mon, 23 May 2011 22:29:28 +0000</pubDate>
<dc:creator>knowlsy</dc:creator>
<guid isPermaLink="false">21441@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Vicky,&#60;/p&#62;
&#60;p&#62;Just to clarify, I don't want it to move, but it does. If I remove that then (if i remember correctly) it does not fix the image within the screen (so for example if i wanted it as the background for my menu tabs, it will for each menu tab have the top left corner of the large image. if i use that line it does keep it fixed, so I get the corresponding part of the image in each tab of my menu, but when i scroll the corresponding image scrolls with me. I want it to stay still like the background!)&#60;/p&#62;
&#60;p&#62;Sorry, it isn't particularly clear without an example to show you... I'll see what I can do...&#60;/p&#62;
&#60;p&#62;Part of the reason why I'm confused is because fixed is the only option that gets me close to what I want, but it doesn't actually 'fix' what I thought it would 'fix'.&#60;/p&#62;
&#60;p&#62;Thanks anyway&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>vicky515 on "'background-attachment: fixed' doesn't fix in menu etc..."</title>
<link>http://themeshaper.com/forums/topic/background-attachment-fixed-doesnt-fix-in-menu-etc#post-21434</link>
<pubDate>Mon, 23 May 2011 17:37:58 +0000</pubDate>
<dc:creator>vicky515</dc:creator>
<guid isPermaLink="false">21434@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Sorry if I misunderstand but, if you want the image to scroll with the text, why not remove background-attachment:fixed?  That CSS property means it is &#34;fixed&#34; in that location of the screen, even if you scroll.
&#60;/p&#62;</description>
</item>
<item>
<title>knowlsy on "'background-attachment: fixed' doesn't fix in menu etc..."</title>
<link>http://themeshaper.com/forums/topic/background-attachment-fixed-doesnt-fix-in-menu-etc#post-21410</link>
<pubDate>Sat, 21 May 2011 17:21:00 +0000</pubDate>
<dc:creator>knowlsy</dc:creator>
<guid isPermaLink="false">21410@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello everyone,&#60;/p&#62;
&#60;p&#62;I'm trying out some new designs for my site, I'm after having a semi-transparent effect so that it appears as if my container/widget areas/menu have about 50 opacity. I might not be explaining it very well, but basically I'm after something similar to this site &#60;a href=&#34;http://vbrant.eu/content/creative-commons-non-commercial-licences&#34; rel=&#34;nofollow&#34;&#62;http://vbrant.eu/content/creative-commons-non-commercial-licences&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;What I've tried to do is use two separate images, the normal background and one which is the same as the background except lighter so that it looks as if it's at about 50 opacity. I then want to use the second image as the background in various different parts of the site, like my menu's/container etc.&#60;/p&#62;
&#60;p&#62;This is the code I've got so far&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;background-attachment: fixed;
    background-image: url(&#38;quot;images/backgroundb.jpg&#38;quot;);
    background-position: 50% 0;
    background-repeat:no-repeat;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If you don't scroll down it looks exactly right. The problem comes when i scroll down. Even though i'm using 'background-attachment: fixed;' the image stays with me as i scroll down, and my background image is fixed, so they then no longer match (and it looks very silly!)&#60;/p&#62;
&#60;p&#62;I'm afraid I'm working on this on my wamp server, the only webspace I have at the moment is being used for the website with the old design so I can't give you a link to show the problems.&#60;/p&#62;
&#60;p&#62;Does anyone have any idea what I can do to stop it scrolling?&#60;/p&#62;
&#60;p&#62;Thanks in advance!&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>soren on "Different backgrounds on post"</title>
<link>http://themeshaper.com/forums/topic/different-backgrounds-on-post/page/2#post-21129</link>
<pubDate>Sun, 08 May 2011 08:11:30 +0000</pubDate>
<dc:creator>soren</dc:creator>
<guid isPermaLink="false">21129@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I got it!&#60;/p&#62;
&#60;p&#62;By using:&#60;br /&#62;
function kwight_add_background_letter($content) {&#60;br /&#62;
	if(is_single() &#124;&#124; is_home()) {&#60;/p&#62;
&#60;p&#62;.......
&#60;/p&#62;</description>
</item>
<item>
<title>soren on "Different backgrounds on post"</title>
<link>http://themeshaper.com/forums/topic/different-backgrounds-on-post/page/2#post-21128</link>
<pubDate>Sun, 08 May 2011 07:51:11 +0000</pubDate>
<dc:creator>soren</dc:creator>
<guid isPermaLink="false">21128@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello!&#60;/p&#62;
&#60;p&#62;Is there a way to get background into the blog pages as well?&#60;br /&#62;
Now the background only shows on the single post but not on the blog page!&#60;/p&#62;
&#60;p&#62;if ( is_single() )... and I need something like (is_blog)...&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>

</channel>
</rss>
