diff --git a/bp-core/bp-core-widgets.php b/bp-core/bp-core-widgets.php
index 11dff4c..f617e5d 100644
a
|
b
|
class BP_Core_Members_Widget extends WP_Widget { |
40 | 40 | |
41 | 41 | echo $before_widget; |
42 | 42 | echo $before_title |
43 | | . $instance['title'] |
| 43 | . '<a href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_members_root_slug() ) . '">' . $instance['title'] . '</a>' |
44 | 44 | . $after_title; ?> |
45 | 45 | |
46 | 46 | <?php if ( bp_has_members( 'user_id=0&type=' . $instance['member_default'] . '&max=' . $instance['max_members'] . '&populate_extras=0' ) ) : ?> |
diff --git a/bp-groups/bp-groups-widgets.php b/bp-groups/bp-groups-widgets.php
index 2ceaef6..833c3d8 100644
a
|
b
|
class BP_Groups_Widget extends WP_Widget { |
42 | 42 | |
43 | 43 | echo $before_widget; |
44 | 44 | echo $before_title |
45 | | . $instance['title'] |
| 45 | . '<a href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_groups_root_slug() ) . '">' . $instance['title'] . '</a>' |
46 | 46 | . $after_title; ?> |
47 | 47 | |
48 | 48 | <?php if ( bp_has_groups( 'user_id=' . $user_id . '&type=' . $instance['group_default'] . '&max=' . $instance['max_groups'] ) ) : ?> |
diff --git a/bp-themes/bp-default/_inc/css/default.css b/bp-themes/bp-default/_inc/css/default.css
index 5122abe..6dcb1dd 100644
a
|
b
|
div#sidebar h3.widgettitle { |
280 | 280 | margin: 25px -20px 10px -19px; |
281 | 281 | padding: 5px 15px; |
282 | 282 | } |
| 283 | div#sidebar h3.widgettitle a { |
| 284 | text-decoration: none; |
| 285 | color: #555; |
| 286 | } |
283 | 287 | #footer-widget-area .widget_search, |
284 | 288 | div#sidebar .widget_search { |
285 | 289 | margin-top: 20px; |