Sorry for posting so many different threads - tell me if I should have posted it on one thread instead, I'll do it next time.
I have enabled breadcrumbs on my forum, but the first "forum" breadcrumb doesn't actually show up on the mobile page, until you click a thread. This creates a bit of white space at the top, which wouldn't be there if i disabled breadcrumbs.
Is there a fix?
Forum is http://examqa.com/
Please read this support topic:
I have the exact same problem...when loading in mobile view there is a space at the top..but only on the FRONT index page. The breadcrumbs show up to fill that space when I click on one of the forums.
The class of the space is <div class="wpforo-subtop"> ...I cannot find a good way to either move the margins up or hide it only on the index page.
This is not an issue on desktop as the breadcrumbs show up on the index page
This is not a huge issue but stops the page from looking professional
so I started experimenting with the css and this worked:
@media screen and (max-width: 620px){
#wpforo #wpforo-wrap .wpf-breadcrumb {
margin: 0px 0 0px 0!important;
}
...but is there a better way? ...it still does not show the home breadcrumb on front page index for some reason.