I have created a content type in which the user uploads an image to display at the top of the page. It is basically a standard Page with a fixed-dimension image added.
My question is: How do I get the image to show ABOVE the page title?
On the Manage fields page I can sort the fields so the title field is below the image field, however, that order is not reflected on the saved page.
Any thoughts on how to go about this?
Comments
Comment #1
elcapitan82 commentedComment #2
dman commentedIt's a theme thing, and not many themes have a way to support that.
Drupal basically puts its page title in a part of the page that is separate from the rest of the content.
It can be done with a lot of theme messing about, OR probably by using an alternate method:
CCK Block or similar (views can do it too) will let you display the content of a cck field in any region of the page alongside its node
You can see how that could be used to place your image in the $header or any other region.
You may still need to add an 'above title' region to put it in (see theme guide: custom regions) but it's pretty straightforward this way.
Comment #3
elcapitan82 commentedThanks, I'll give it a shot.
Comment #4
elcapitan82 commentedCCK Blocks did the trick. I assigned the new image block to a "content top" region and edited the display fields settings to show the image in the block but not in the content itself. Excellent!