BuddyBoss Home – Web Support Forums Themes Boss. theme Changing the height of site header

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

    #61369
    @myasinusman

    I bought the Boss theme couple days ago and I wanted to change some of the CSS. I want to change the height of the site header where the search bar, profile picture and menus are. Right now the height is set as 74px and I just cant figure out how to make it 55px.

    Answers

    #61377
    @anve

    Hi @myasinusman,

    Try adding following css in custom css option of your child theme.

    
    .site-header .left-col .table {
      height: 55px;
    }
    .site-header .header-links {  
      height: 55px;
    }
    .site-header .header-notifications {
      height: 55px;
      line-height: 55px;
    }
    .site-header .header-account-login {
      height: 55px;
      line-height: 55px;
    }
    #right-panel {
      margin-top: 55px!important;
    }
    #masthead #mastlogo {
      padding: 7px 20px 7px 25px;
    }
    

    Regards
    Anve

    #61378
    @myasinusman

    I added the css to my custom css file. However it did not change anything other than the logo part. I attached a snap shot of the site header.

    #61381
    @anve

    Hi @myasinusman,

    Please send us your site url and the thread through the contact us page , will check on your site . As it worked for me .

    Regards
    Anve

    #61390
    @myasinusman

    The CSS works on fluid layout however it does not work on boxed layout. I am using the boxed layout.
    I just sent the site details and username and password on contact us page.

    #61398
    @anve

    Hi @myasinusman,

    Try by applying the following code in custom css of child theme . Remove the previous given code.

    `
    @media screen and (min-width:481px){
    .boxed .middle-col {
    height: 55px!important;
    }
    .site-header .header-notifications {
    height: 55px;
    line-height: 55px;
    }
    .site-header .header-account-login {
    height: 55px;
    line-height: 55px;
    }
    .boxed #left-panel-inner {
    padding-top: 55px!important;
    }
    .site-header .header-account-login .pop {
    top:57px;
    }
    #masthead #mastlogo {
    padding: 7px 20px 7px 25px;
    }
    #right-panel {
    margin-top: 55px!important;
    }
    }

    Regards
    Anve

    #61399
    @myasinusman

    Great! Its working now.

    Thanks a lot.

    #61410
    @anve

    Great:)

Viewing 8 posts - 1 through 8 (of 8 total)
  • The question ‘Changing the height of site header’ is closed to new replies.