The CSS solution provided in this thread: http://forum.bytesforall.com/showthread.php?t=20610
worked fine with Wordpress 3.5.2 and Atahualpa 3.7.12. Where the category name was "instructional videos," the following CSS code worked perfectly in those older versions of Wordpress & Atahualpa:
Code:
body.single.instructional-videos { background-image: url("http://xxxx.jpg"); }
After viewing the page source, I also tried:
Code:
body.single.category-instructional-videos { background-image: url("http://xxxx.jpg"); }
"div.category-instructional videos" does work as a selector to change the background image of the post itself, but not the full body background.
Can't seem to find the correct CSS selector now to do what body.single.[category-name] did perfectly in the older versions of WP and Atahualpa referenced above.
Any help will be greatly appreciated!