At first: nice colorful(!) Theme, I will use this in Future as an Admin-Theme.

Two things I found in page.tpl.php:
1. there is no use of the $body_classes, so I changed line 14 into
print $body_classes; ">

2. Tabs are not displayed if there is no $title, so I changed line 21ff into
if ($title || $tabs):

print $breadcrumb;
if ($title) : print $title;

endif;
print $tabs;

endif;

Maybe you like to put this in the next version...

Greetings from Hamburg - Kle

Comments

kle’s picture

Holy shit - I forgot the [code]-Tag. Here the message again:

At first: nice colorful(!) Theme, I will use this in Future as an Admin-Theme.

Two things I found in page.tpl.php:
1. there is no use of the $body_classes, so I changed line 14 into
<body id="polpo" class="<?php print $body_classes; ?>">

2. Tabs are not displayed if there is no $title, so I changed line 21ff into

<?php if ($title || $tabs): ?>
  <div id="pagebar">
  <?php print $breadcrumb; ?>
  <?php if ($title) : ?>
    <h1>
    <?php print $title; ?>
    </h1>
    <?php endif; ?>
    <?php print $tabs; ?>
  </div>
  <?php endif; ?>

Maybe you want to put this in your next Version
Greetings from Hamburg - Kle

jptaranto’s picture

Assigned: Unassigned » jptaranto
Status: Active » Fixed

Thanks kle - this code has been added to today's 6.x-1.2 release.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.