> Is there a way to change the top picture in the .page file that would
> override the one set in the default template?
No problem! Open the default template and change the src attribute of
the image like this:
<img src="{relocatable: <%= node[''toppic''] ?
node[''toppic''] : ''normal_toppic.jpg''
%>}" />
This specifies that if a node has a meta information called `toppic`,
this meta information should be used as source lcn for the image.
Otherwise the default picture `normal_toppic.jpg` is used.
So, you just need to set the following meta information in a page node
and be aware that the path of the image is calculated from the template
and not the page, so the best thing would be to use an absolute lcn to
avoid confusion:
toppic: /images/special_toppic.jpg
-- Thomas