From 7537eec11ceb09fe6d84abbf7dfc9d9c3984fdca Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sun, 7 Nov 2010 21:48:56 +0000 Subject: [PATCH] - Patch #960490 by Jacine, sivaji, carlos8f: regression: ul.links generated by theme_links() always appears as .inline. --- themes/bartik/css/style.css | 2 ++ themes/bartik/templates/page.tpl.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/themes/bartik/css/style.css b/themes/bartik/css/style.css index 631ff206ac22..3fa785487596 100644 --- a/themes/bartik/css/style.css +++ b/themes/bartik/css/style.css @@ -427,10 +427,12 @@ h1#site-name, } #main-menu-links { font-size: 0.929em; + margin: 0; padding: 0 15px; } #main-menu-links li { float: left; /* LTR */ + list-style: none; padding: 0 1px; margin: 0 1px; } diff --git a/themes/bartik/templates/page.tpl.php b/themes/bartik/templates/page.tpl.php index e03c76452455..f426b8bfcad3 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', 'inline', 'clearfix'), + 'class' => array('links', 'clearfix'), ), 'heading' => array( 'text' => t('Main menu'), -- GitLab