diff --git src/bp-templates/bp-nouveau/includes/functions.php src/bp-templates/bp-nouveau/includes/functions.php
index 5254a31c8..43eae8e20 100644
|
|
function bp_nouveau_theme_cover_image( $params = array() ) { |
763 | 763 | $top_offset = bp_core_avatar_full_height() - 10; |
764 | 764 | $left_offset = bp_core_avatar_full_width() + 20; |
765 | 765 | |
| 766 | if ( ! bp_is_active( 'activity' ) || ! bp_activity_do_mentions() ) { |
| 767 | $top_offset -= 40; |
| 768 | } |
| 769 | |
766 | 770 | $cover_image = isset( $params['cover_image'] ) ? 'background-image: url( ' . $params['cover_image'] . ' );' : ''; |
767 | 771 | $hide_avatar_style = ''; |
768 | 772 | |