This theme works perfectly for everything I need except it does not have a block configuration option available for "Above Content" region. Please suggest if there is anything easy to achieve this.

Comments

shruti.sheth’s picture

Hello,
I hope my answer is helpful to you. The following can be one of the solutions to this issue.

You can add a custom region 'above content' on top of the content region and this can be achieved as under

1. Add a region 'Above content' as the one showed in the code below
in your modules/system/system.module

function system_theme_default() {
  return array(
    'regions' => array(
      'left' => 'Left sidebar',
      'right' => 'Right sidebar',
      'above_content' => 'Above content'
      'content' => 'Content',
      'header' => 'Header',
      'footer' => 'Footer',
    ),

2. Print the region 'above_content' in your page.tpl.php above the 'content' region as shown below.
In your page.tpl.php

<div class="above-content">        
         <?php print $above_content ?>
       </div>
          
 <?php print $content ?>
      </div>

Now, the blocks can be enabled in this above_content region.

Thanks.

naveeddil’s picture

I defied the same but when i add content to the Block its not showing on page ever i cleared the cache
any help

oadaeh’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

This issue is being closed because it is against a branch for a version of Drupal that is no longer supported.
If you feel that this issue is still valid, feel free to re-open and update it (and any possible patch) to work with the 7.x-4.x branch.
Thank you.