Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Is it possible to show more levels of the breadcrumb in mobile view? Currently all I get is
Forum (Main page)
House Icon > Forum Name
House Icon > Topic Name
This forces the used to have to hit the home link to be taken back to the main forums list and not way to go back to the parent forum of the topic with out using the back button.
Thanks
Hi deaddred,
Yes, it is possible via CSS code. However I don't recommend to do it, probably you'll get some problems with the design.
I'll leave the CSS code below. You should put the code in Dashboard > Forums > Settings > Styles > "Custom CSS Code" textarea:
@media screen and (max-width: 620px){
#wpforo #wpforo-wrap .wpf-breadcrumb a {
display: block !important;
font-size: 9px;
}
}
Don't forget to delete all caches before checking.