In Admin panel> Theme> Advanced Settings> Additional CSS section,
If you have groups app installed, use this code:
aside[role=navigation] > a:nth-child(1) > span:nth-child(2), .mobile-main-menu .menu > a:nth-child(1) > span:nth-child(2) {
display: none !important;
}
aside[role=navigation] > a:nth-child(1):after, .mobile-main-menu .menu > a:nth-child(1):after {
content: 'Feed name' !important;
}
aside[role=navigation] > a:nth-child(3) > span:nth-child(2), .mobile-main-menu .menu > a:nth-child(3) > span:nth-child(2) {
display: none !important;
}
aside[role=navigation] > a:nth-child(3):after, .mobile-main-menu .menu > a:nth-child(3):after {
content: 'Topics name' !important;
}
If you do not have groups app installed, use this code:
aside[role=navigation] > a:nth-child(1) > span:nth-child(2), .mobile-main-menu .menu > a:nth-child(1) > span:nth-child(2) {
display: none !important;
}
aside[role=navigation] > a:nth-child(1):after, .mobile-main-menu .menu > a:nth-child(1):after {
content: 'Feed name' !important;
}
aside[role=navigation] > a:nth-child(2) > span:nth-child(2), .mobile-main-menu .menu > a:nth-child(2) > span:nth-child(2) {
display: none !important;
}
aside[role=navigation] > a:nth-child(2):after, .mobile-main-menu .menu > a:nth-child(2):after {
content: 'Topics name' !important;
}
Please replace 'Feed name' and 'Topics name' in the above codes with your chosen names.