BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Changing the height of site header
- This topic has 7 replies, 2 contibutors, and was last updated 8 years, 8 months ago by Anve S..
Question
March 3, 2016 at 11:56 pm #61369@myasinusmanI 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
March 4, 2016 at 1:50 am #61377@anveHi @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
AnveMarch 4, 2016 at 2:04 am #61378@myasinusmanI 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.
March 4, 2016 at 2:49 am #61381@anveHi @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
AnveMarch 4, 2016 at 3:41 am #61390@myasinusmanThe 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.March 4, 2016 at 4:56 am #61398@anveHi @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
AnveMarch 4, 2016 at 5:08 am #61399@myasinusmanGreat! Its working now.
Thanks a lot.
March 4, 2016 at 5:47 am #61410@anveGreat:)
- The question ‘Changing the height of site header’ is closed to new replies.