- This topic has 1 reply, 2 contibutors, and was last updated 9 years, 7 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Question
Answers
Viewing 2 posts - 1 through 2 (of 2 total)
- The question ‘Buddypanel’ is closed to new replies.
BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Buddypanel
Hi!
At the buddypanel (left sidebar), I would like to be able to display 30 characters on each text description. Is there any way to do that? Users need to see the full text description. If the solution requires removing the icons, please let me know how to do it.
Thanks.
@mozartc first let’s try reducing the before and after padding by adding this to custom.css:
body.left-menu-open #nav-menu > ul > li > a, body.left-menu-open .menu-panel .menupop > a{padding:15px 10px 15px 10px;}
If that is not enough you can add this to custom.css to remove the icons:
.menu-panel #header-menu > ul li a:before, .menu-panel #nav-menu > ul > li > a:not(.open-submenu):before, .menu-panel .screen-reader-shortcut:before, .menu-panel .bp_components ul li ul li > .ab-item:before{display:none;}
You may need to add !important
before the semi-colon if neither works.