There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
use the FireBug extension in FireFox to see what CSS is being used to set the background. Then on the pages you want to change it use 'body.page-id-nn' to prefix the rest of the selector. nn is the id of the page.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
I am not well versed in this at all so I'm not sure where I should put what as I don't know what to use as a selector for the background for each page and where to put this.
You need to take a tutorial for CSS (htmldog.com has a good one)
You need to put it in the 'CSS Inserts' (ato->add HTML/CSS Inserts) in the format
HTML Code:
body.page-id-114 {background: #000000;}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#5
Mar 16, 2012, 07:49 PM
yukoner
48 posts · Jan 2012
Thanks again Juggledad.
Not only for the help, but for the suggestion of and link to a good CSS tutorial site
Norm
#6
Mar 18, 2012, 07:25 PM
lmilesw
10,176 posts · Jul 2009
Central New York State USA
I just happened to be looking at a plugin for that function recently. Here is a link.
__________________ ~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
#7
Mar 18, 2012, 07:31 PM
yukoner
48 posts · Jan 2012
Thanks lmilesw.
Norm
#8
Mar 22, 2012, 07:53 AM
pakelly
10 posts · Mar 2012
Hi,
Great help here, thanks! However, this changes the background behind the page and I'm trying to change the color of a page. Is there a code for this?
Thanks!
Paul
actually it changes the page, you want to change the container. This is doable but move involved because the containor has multiple parts - header, left sidebar, middle, right sidebar, footer - and all of them can have their color set.
You would still use the body.page-id-nnn selector but then add
body.page-id-nnn #container ...
body.page-id-nnn #header
body.page-id-nnn #left
etc etc. The best way to find them all is use FireBug in FireFox and change the colors for each area so you get them all.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support