See attached picture - using Seven, the Boost secondary tabs seem to be overlapping the breadcrumb. Looking into this further, it doesn't seem any other modules I'm using in the Seven theme use the secondary tabs. So, either this is a core theme issue that should be resolved there, or Boost will need to find a different way of displaying second-level tasks (.htaccess generation, settings, etc.).

CommentFileSizeAuthor
overlapping-tabs.png36.44 KBgeerlingguy
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

mikeytown2’s picture

I have a Wide monitor so I didn't notice it. Seems like a core issue. All I'm using is hook menu.

  $items['admin/config/development/performance/boost/debug'] = array(
    'title' => 'Boost Debug Settings',
    'description' => 'Debug configuration for Boost.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('boost_admin_debug_settings'),
    'access arguments' => array('administer site configuration'),
    'type' => MENU_LOCAL_TASK,
    'file' => 'boost.admin.debug.inc',
  );
  $items['admin/config/development/performance/boost/filesystem'] = array(
    'title' => 'Boost File System Settings',
    'description' => 'File system configuration for Boost.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('boost_admin_filesystem_settings'),
    'access arguments' => array('administer site configuration'),
    'type' => MENU_LOCAL_TASK,
    'file' => 'boost.admin.filesystem.inc',
  );
  $items['admin/config/development/performance/boost/htaccess-settings'] = array(
    'title' => 'Boost .htaccess Settings',
    'description' => '.htaccess configuration for Boost.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('boost_admin_htaccess_settings'),
    'access arguments' => array('administer site configuration'),
    'type' => MENU_LOCAL_TASK,
    'file' => 'boost.admin.htaccess.inc',
  );
  $items['admin/config/development/performance/boost/htaccess-generator'] = array(
    'title' => 'Boost .htaccess generation',
    'description' => '.htaccess generation for Boost.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('boost_admin_htaccess_generation'),
    'access arguments' => array('administer site configuration'),
    'type' => MENU_LOCAL_TASK,
    'file' => 'boost.admin.htaccess.inc',
  );
geerlingguy’s picture

Status: Active » Closed (works as designed)

Yeah, that's what I was thinking... moving discussion to #763720: Visiblity of primary & secondary navigation, where the bug was reported.