Mobile View Header Space Issue
Hi
I am having trouble removing the white space on the mobile view BeTheme
here is a screenshot > http://profilebusiness.co.uk/responsive view.png
I have added the following to the Custom CSS:
body:not(.template-slider):not(.header-simple) #Header { min-height: 0 !important; }
and tried:
@media only screen and (max-width:768px) { body:not(.template-slider):not(.header-simple) #Header { min-height: 0 !important; } }
but the space still shows on the mobile view, please can you help
Kind Regards,
David
Comments
please send us link to page where you got this empty space on mobile.
Thank you for your helpKind Regards,David
1. Under Theme options > Header & Subheader > Extras section you forgot to removed "Top Bar Right" section.
2. You set 123px of logo height while logo can not be so large on mobile. You should wrap the css responsible for increasing logo size in @media only screen attributes. More details about it you can read on http://www.w3schools.com/cssref/css3_pr_mediaquery.asp
@anymargetts We can not open your site so we don't know what might be the reason in your case.
#Top_bar .menu > li > a span:not(.description) { line-height: 20px; padding: 105px 15px 5px 15px ; }
body:not(.template-slider):not(.header-simple) #Header { min-height: 0 !important; }
@media only screen
and (max-width : 320px) {
/* Styles */ #logo {
width:100px;
}
}
{
#Top_bar .top_bar_left {
height: auto !important;
}
}
#Top_bar #logo { height: 123px !important; }
#Top_bar .menu > li > a span:not(.description) { padding: 0 5px !important; }
}
#Top_bar .menu > li > a span:not(.description) { line-height: 20px; padding: 105px 15px 5px 15px ; }
#Top_bar #logo { height: 123px !important; }
}
#Top_bar .menu > li > a span:not(.description) { line-height: 20px; padding: 105px 15px 5px 15px ; }