Viewing 6 posts - 1 through 6 (of 6 total)
  • Question

    #66746
    @johnnetr

    Hi,

    How do I change header color? By default its white, and the icon and the text menus are black. I want to make the header background black and the text menu and icon white. Any suggestion?

    Answers

    #66751
    @anve

    HI @johnnetr,

    Go to buddyboss > onesocial theme > styling > Titlebar background (#000)

    Add following css in child theme’s custom css.

    @media screen and (min-width:481px){
    #header-aside span::before {
    color: #fff !important;
    }
    #header-aside a i {
    color: #fff !important;
    }
    #masthead .menu-titlebar-container .nav-menu li a {
    color: #fff!important;
    }
    #masthead .menu-titlebar-container ul {
    background-color: #000!important;
    }
    }

    #67026
    @orryspoon

    @anve – on mobile how do you make the mobile title bar white (with a grey bottom divider) and grey icons?

    Thanks
    David

    #67030
    @anve

    Hi @orryspoon,

    Try adding following in child theme custom css .

    
    @media screen and (max-width:480px){
    #mobile-header {
      background-color: #fff !important;
      border-bottom: 1px solid grey;
    }
    #mobile-header .left-btn::before {
      color: grey;
    }
    #mobile-header .right-btn::before {
      color: grey;
    }
    }
    

    Regards
    Anve

    #67070
    @orryspoon

    Thanks. This works.

    #67081
    @anve

    Great 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • The question ‘Header color’ is closed to new replies.