diff --git a/sites/all/themes/unl_wdn/style.css b/sites/all/themes/unl_wdn/style.css
index ac4a517b87277b5e27e72c2e556c9bd32ed446a6..34dddc6278e7a1e2e61ffe27ff50754dbf22a118 100644
--- a/sites/all/themes/unl_wdn/style.css
+++ b/sites/all/themes/unl_wdn/style.css
@@ -16,3 +16,13 @@ body.fixed #maincontent {
 #navigation div.contextual-links-wrapper {
   display: none;
 }
+
+/* Overrides of system.menus.css */
+#navigation ul li.expanded, #navigation ul li.collapsed , #navigation ul li.leaf {
+  list-style-image: none;
+  list-style-type: none;
+}
+#navigation li.expanded, #navigation li.collapsed, #navigation li.leaf {
+  margin: 0;
+  padding: 0;
+}
diff --git a/sites/all/themes/unl_wdn/template.php b/sites/all/themes/unl_wdn/template.php
index d53d5cd8d2207f2de229a86f6a19fbe9c3d0c0a3..9e37582b6fa9bb8b14542cb63f2c9439efc32484 100644
--- a/sites/all/themes/unl_wdn/template.php
+++ b/sites/all/themes/unl_wdn/template.php
@@ -5,9 +5,8 @@
  */
 function unl_wdn_css_alter(&$css) {
   // Turn off some styles from the system module.
-  // If some of this is later found desireable, add "stylesheets[all][] = css/unl_wdn.menus.css" to unl_wdn.info and copy these files to that locaiton with edits.
+  // If some of this is later found desireable, add "stylesheets[all][] = css/unl_wdn.theme.css" to unl_wdn.info and copy these files to that locaiton with edits.
   $path = drupal_get_path('module','system');
-  unset($css[$path.'/system.menus.css']);
   unset($css[$path.'/system.theme.css']);
 }