ronolette 0 Report post Posted August 11, 2011 This is the custom code I'm using: body{ background-image: url("http://www.nostalgic-america.com/wordpress/wp-content/uploads/2011/08/cr9b.jpg"); background-repeat: no repeat; background-attachment: fixed; } I have selected "fixed width design framework". In the former canvas area (the background), all I get is black. What am I doing wrong Share this post Link to post Share on other sites
kastelic 6 Report post Posted August 11, 2011 A few syntax errors. Try: body{ background-image: url("http://www.nostalgic-america.com/wordpress/wp-content/uploads/2011/08/cr9b.jpg"); background-repeat: no-repeat; background-attachment: fixed; } Share this post Link to post Share on other sites
Jenny 33 Report post Posted August 14, 2011 Hi ronolette. I have a fixed background on my personal blog and here is what I did. I selected "fixed-width design framework" (which you did) and then for the first 3 colors (body, page, page canvas background), I left them blank. Then I added this to the custom CSS: body { background-image: url(http://www.nostalgic-america.com/wordpress/wp-content/uploads/2011/08/cr9b.jpg); background-repeat: no-repeat; background-attachment: fixed; } body #page{background:transparent} Note the lack of quotes around the background url also. If you also want the background image to go into the header (to the top of the page) then add the following CSS also: #header { background: none repeat scroll 0 0 transparent; } As a side note, your background image is 1077kb. That is quite large for a background so you should try to optimize it using Photoshop or similar. Hope that helps! ♥ Jenny :: Web designer at Simple Mama (follow me at @simplemamacom) Check out Share Me, a social sharing add-on for DMS that is super simple to set up. Share this post Link to post Share on other sites
ronolette 0 Report post Posted August 15, 2011 Thanks for the try, but it still didn't work Share this post Link to post Share on other sites
Jenny 33 Report post Posted August 15, 2011 What part of it exactly isn't working? Can you provide a link to your blog? Also, please provide what settings you currently have in the custom CSS. ♥ Jenny :: Web designer at Simple Mama (follow me at @simplemamacom) Check out Share Me, a social sharing add-on for DMS that is super simple to set up. Share this post Link to post Share on other sites
ronolette 0 Report post Posted August 15, 2011 I SENT THIS MESSAGE A MOMENT AGO BUT APPARENTLY DIDN'T POST. Address is www.ronaldnolette.com Code is exactly what you suggested before: body { background-image: url(http://www.nostalgic-america.com/wordpress/wp-content/uploads/2011/08/cr9bb.jpg); background-repeat: no-repeat; background-attachment: fixed; } body #page{background:transparent} #header { background: none repeat scroll 0 0 transparent; } I made the picture smaller; it is only 396K Thanks for your help Ron Share this post Link to post Share on other sites
ronolette 0 Report post Posted August 15, 2011 simple mama an error on my part. the code used was: body { background-image: url(http://www.ronaldnolette.com/wp-content/uploads/2011/08/cr9bb.jpg); background-repeat: no-repeat; background-attachment: fixed; } body #page{background:transparent} #header { background: none repeat scroll 0 0 transparent; } everything else I wrote was correct Share this post Link to post Share on other sites
Kate 3 Report post Posted August 15, 2011 Hello, I checked your site and I'm not seeing that CSS code. May I ask where you added it? In addition, a suggestion: For this line of code: #header { background: none repeat scroll 0 0 transparent; } try this: #header {background-color: transparent !important;} In addition: you can use Settings->Design Control to add your background image Share this post Link to post Share on other sites
ronolette 0 Report post Posted August 15, 2011 Kate, I put it in the area of "Platform Pro Theme Options", the Custom Code section. Where else would I add it? Ron Share this post Link to post Share on other sites
kastelic 6 Report post Posted August 15, 2011 You need to take the Share this post Link to post Share on other sites
ronolette 0 Report post Posted August 16, 2011 I don't have the Share this post Link to post Share on other sites
Kate 3 Report post Posted August 16, 2011 Hey Ron, I saw the same thing in the Custom code that Jimmy mentioned. In fact, I just checked and still see it. Are you able to post a screenshot of that Custom Code page, please? The other option is, if you have Base activated, to post that in base.css. Share this post Link to post Share on other sites
ronolette 0 Report post Posted August 17, 2011 Kate, First of all, I appreciate you taking the time to analyse my problem. Secondly, although I know how to make a screen shot of the custom code area, I do not know how to incorporate it into these comments. Clue me in, if you will. Ron Share this post Link to post Share on other sites
ronolette 0 Report post Posted August 17, 2011 Hi Kate, I made a screen shot of the custom code area and uploaded it. I stitched 2 screenshots together so you could see the total code in that area. Here is the address of the screen shoot: http://www.ronaldnolette.com/custom_code.jpg Ron Share this post Link to post Share on other sites
Rob 547 Report post Posted August 17, 2011 When I browsed to your site, I'm getting the following errors in the header area. Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /homepages/17/d243443379/htdocs/wp-content/plugins/statsurfer/append.php on line 314 Warning: file_get_contents(http://api.hostip.info/country.php?ip=67.85.47.223) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /homepages/17/d243443379/htdocs/wp-content/plugins/statsurfer/append.php on line 314 I'll bump this up for additional help on the background issue. Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites
ronolette 0 Report post Posted August 17, 2011 I have never seen that error but it doesn't seem like it should have anything to do with my present problem. Does it? Ron Share this post Link to post Share on other sites
kastelic 6 Report post Posted August 17, 2011 Ron, your code is correct but is not being implemented. You can see in this screenshot what is actually being sent to the browser regarding your custom code: You can see the bg image working because i added your code into the inspector. The errors that rangelone mentioned certainly could affect your problem, i would deactivate all plugins. Beyond that, check all your custom code and html code for each page for markup errors like unclosed tags. Share this post Link to post Share on other sites
ronolette 0 Report post Posted August 17, 2011 I see your screen shot. When you added your code into the inspector, it wasn't permanent? I do not know CSS much and I know firebug even less. In any event, if I got to the same place you were in the screenshot, would I be able to fix it permanently? Secondly, how do I get to that spot using firebug? extremely frustrated, Ron Share this post Link to post Share on other sites
catrina 103 Report post Posted August 18, 2011 Have you checked out this tutorial on Firebug?: http://www.pagelines.com/docs/?s=firebug#101 Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
Kate 3 Report post Posted August 18, 2011 Hey Ron, I also tried what Jimmy mentioned and it worked for me. However, these are just local changes we're making... they're not actually being changed on your site. I can see from looking at the site that the code you're placing in Custom CSS isn't even being put in. It's still just that " Share this post Link to post Share on other sites
ronolette 0 Report post Posted August 23, 2011 Hi Kate, Yes, I tried all of those things. I don't understand why just the