diff options
-rw-r--r-- | start.php | 2 | ||||
-rw-r--r-- | views/default/n1_theme/css.php | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -13,6 +13,8 @@ function n1_theme_init() { elgg_register_simplecache_view('n1_theme/landing');
elgg_register_css('n1:landing_page', elgg_get_simplecache_url('css', 'n1_theme/landing'));
+ elgg_extend_view('css/elgg', 'n1_theme/css');
+
if (elgg_is_active_plugin('pages')) {
// pages icon url override
elgg_register_plugin_hook_handler('entity:icon:url', 'object', 'n1_theme_pages_icon_url_override');
diff --git a/views/default/n1_theme/css.php b/views/default/n1_theme/css.php new file mode 100644 index 0000000..486aff0 --- /dev/null +++ b/views/default/n1_theme/css.php @@ -0,0 +1,3 @@ +.profile-content-menu a { + background-color: transparent; +} |