diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/bartik/templates/page.tpl.php | 4 | ||||
-rw-r--r-- | themes/garland/template.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/themes/bartik/templates/page.tpl.php b/themes/bartik/templates/page.tpl.php index 879923452..e03c76452 100644 --- a/themes/bartik/templates/page.tpl.php +++ b/themes/bartik/templates/page.tpl.php @@ -129,7 +129,7 @@ 'links' => $main_menu, 'attributes' => array( 'id' => 'main-menu-links', - 'class' => array('links', 'clearfix'), + 'class' => array('links', 'inline', 'clearfix'), ), 'heading' => array( 'text' => t('Main menu'), @@ -146,7 +146,7 @@ 'links' => $secondary_menu, 'attributes' => array( 'id' => 'secondary-menu-links', - 'class' => array('links', 'clearfix'), + 'class' => array('links', 'inline', 'clearfix'), ), 'heading' => array( 'text' => t('Secondary menu'), diff --git a/themes/garland/template.php b/themes/garland/template.php index 020eb5f8d..6c3fc446f 100644 --- a/themes/garland/template.php +++ b/themes/garland/template.php @@ -64,7 +64,7 @@ function garland_preprocess_page(&$vars) { $vars['primary_nav'] = theme('links__system_main_menu', array( 'links' => $vars['main_menu'], 'attributes' => array( - 'class' => array('links', 'main-menu'), + 'class' => array('links', 'inline', 'main-menu'), ), 'heading' => array( 'text' => t('Main menu'), @@ -80,7 +80,7 @@ function garland_preprocess_page(&$vars) { $vars['secondary_nav'] = theme('links__system_secondary_menu', array( 'links' => $vars['secondary_menu'], 'attributes' => array( - 'class' => array('links', 'secondary-menu'), + 'class' => array('links', 'inline', 'secondary-menu'), ), 'heading' => array( 'text' => t('Secondary menu'), |