BuddyBoss Home – Web Support Forums Themes Boss. theme How to change Menu Icons?

Tagged: , , ,

Viewing 15 posts - 1 through 15 (of 19 total)
  • Question

    #35174
    @aronprins

    Just purchase this theme. If you have a BuddyPress site: GET BOSS! Its… Well… Boss.

    Question: how can I change the icons in front of the BuddyPanel menu?
    Thanks in advance guys!
    Cheers,
    Aron

    Answers

    #35177
    @aronprins

    Answered my own question: https://www.buddyboss.com/tutorials/how-to-add-custom-menus-to-boss-theme/

    For all other Boss questions (Tutorials) check: https://www.buddyboss.com/tutorials/
    Close it up guys, thanks!

    Cheers,
    ARon

    #35181

    Alyssa
    Participant
    @alyssa-buddyboss

    @aronprins Guess you did my job for me 😉 Thanks for posting links, I’m sure it will help other users who stumble upon this thread.

    #35916
    @imdyakov

    OK,

    And what if I need to change an icon in default mobile BP User Menu? Let’s say I want to replace standard stars icons for BP Following Plugin.

    #35975

    Alyssa
    Participant
    @alyssa-buddyboss

    @imdyakov add something like this to custom.css

    #mobile-item-nav ul li#[id of the menu item]:before{
    content: '\f0fb';
    }

    Here is the cheat sheet of icon options with font awesome: http://fortawesome.github.io/Font-Awesome/cheatsheet/ just change the content last 4 characters

    #35981
    @imdyakov

    Thanks for the suggestion although it looks like I still have something wrong in that string.

    #mobile-item-nav ul li#[id=”user-members-following”]:before{
    content: ‘\f164’;
    }

    #35999

    Alyssa
    Participant
    @alyssa-buddyboss

    @imdyakov this is the valid code:

    #mobile-item-nav ul li#user-members-following:before{
    content: '\f164';
    }

    Make sure there are no backticks ` you may need to change them to apostrophes ‘ due to your charset

    #36005
    @imdyakov

    Still doesn’t work for me on some reason. I put it into @media screen and (max-width: 720px) section of the Custom CSS of the child. Is that right?

    #36006
    @imdyakov

    At the moment I have:

    #mobile-item-nav ul li#user-members-following:before{
    content: ‘\f0ed’;
    }

    #mobile-item-nav ul li#user-members-followers:before{
    content: ‘\f0ee’;
    }

    Inside:
    @media screen and (max-width: 720px)
    and
    @media screen and (max-width: 350px)

    #36008

    Alyssa
    Participant
    @alyssa-buddyboss

    @imdyakov you are using the wrong id you need to look at the li parent not the anchor, this is the correct code:

    #mobile-item-nav ul li#members-following-personal-li:before{
    content: '\f0ed';
    }

    Also, you can apply this globally since the mobile-nav is only displayed on mobile devices.

    #36011
    @imdyakov

    Right, thanks for helping out with that TJ.

    #36025

    Alyssa
    Participant
    @alyssa-buddyboss

    NP

    #43695
    @meza

    How can i change icons for the original bb menu items .I see i can change the ones for new pages that i created , however pages that come default like Profile, Notifications friends etc dont seem to allow that option as the CSS option is greyed out as indicated in the picture attached

    #43753

    Alyssa
    Participant
    @alyssa-buddyboss
    #43763
    @meza

    I addedd the code under the global query but still not the css icons menu is still grayed out

Viewing 15 posts - 1 through 15 (of 19 total)
  • The question ‘How to change Menu Icons?’ is closed to new replies.