Now at admin/build/block there is the 'Content' block-position. The blocks put there are under (after, at the end of) the node content.

For me it would be quite useful to be able to put a block above (before, at the beginning of) the node content, just below the Page Title (h2).

I would greatly appreciate this option.

Comments

rjgoldsborough’s picture

That seems like a pretty specific request for a base type theme. Framework's intent is for easy modification so you could add a region and swap around some things in your tpl file and easily achieve the desired layout.

Deepika.chavan’s picture

Hi,
In my case I created new region named 'content_upper' which is above the node content and below the page title, now I am able to put block above node content. Steps to do this:
1. Add following code in 'framework.info' file before ' regions[content] = Content ' line.
regions[content_upper]= Content upper

2. Add following code in 'page.tpl.php' file before ' <?php print $content ?> ' line.

<?php if($content_upper): ?>
       <div class="content-upper-region">
           <?php print $content_upper; ?>
       </div>
 <?php endif;?>

3. Please do clear cached data.

Rgrds,

Deepika Chavan.

Rico Heart’s picture

Thanks for your kind help, Deepika Chavan, it works perfectly.

Now that I see how easy it was to add a region, I can agree with rjgoldsborough's opinion.

Rico Heart’s picture

Status: Active » Closed (works as designed)