I use an additional content block to change my template from backend.
How this works:
- create one template
- style various background images in the <head>:
background-<?php page_content(2); ?>.png
- insert a "code" block below the "WYSIWYG block"
- create various images, such as:
background-.png (the default)
background-home.png
background-news.png etc.
- the user can type "home" or "news" and the appropriate backgound is loaded
Sounds like an interesting idea and is just what I needed for a current project.
To make this work you:
- Uncomment line 217 in frontend.functions.
php:
// echo "<a id=\"wb_section_$section_id\" name=\"wb_section_$section_id\"></a>";
- in the code block use the echo function:
echo "home";
There you have it, works like a charm!