Title: Missing Bread Crumbs &#8211; Mobile
Last modified: October 3, 2025

---

# Missing Bread Crumbs – Mobile

 *  [bigbankclub](https://wordpress.org/support/users/bigbankclub/)
 * (@bigbankclub)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/missing-bread-crumbs-mobile/)
 * Not sure what’s the miss in this theme, but the breadcrumbs are not visible in
   mobile.
 * Whats the solution?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [r1k0](https://wordpress.org/support/users/r1k0/)
 * (@r1k0)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/missing-bread-crumbs-mobile/#post-18667524)
 * Hi [@bigbankclub](https://wordpress.org/support/users/bigbankclub/),
 * This is an expected behavior of the breadcrumbs on smaller screen devices (phones
   and tablets). As it is currently set to:
 *     ```wp-block-code
       @media screen and (max-width: 768px) {    .is-hidden-mobile {        display: none !important;    }}
       ```
   
 * This code hides the breadcrumbs on smaller screen devices. To override this style,
   add the code below to **Additional CSS**. Follow the steps below to make the 
   changes:
    - On your dashboard, head over to **Appearance > Customize**.
    - Scroll down and click the **Additional CSS **option.
    - In the input box add this code:
 *     ```wp-block-code
       @media screen and (max-width: 768px) {    .breadcrumb.is-hidden-mobile {        display: block !important;    }}
       ```
   
 * I have used two classes `.breadcrumbs` and `.is-hidden-mobile` to make sure that
   it overrides the styling made by the theme.
   This should make the breadcrumbs 
   visible now.
 * Hope this helps.
 *  [DmtLo](https://wordpress.org/support/users/lobov/)
 * (@lobov)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/missing-bread-crumbs-mobile/#post-18667712)
 * So this is the right solution for activating breadcrumbs on mobile devices
 *     ```
       @media screen and (max-width: 768px) {
           .breadcrumb.is-hidden-mobile {
               display: block !important;
           }
       }
       ```
   
 *  Thread Starter [bigbankclub](https://wordpress.org/support/users/bigbankclub/)
 * (@bigbankclub)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/missing-bread-crumbs-mobile/#post-18667829)
 * Thank you, I see the 2 class’s created – I will work with this. As I’m adding
   some tweaks to this theme on my end. Thank you

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Missing Bread Crumbs – Mobile’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/iknowledgebase/1.4.4/screenshot.
   png)
 * IKnowledgeBase
 * [Support Threads](https://wordpress.org/support/theme/iknowledgebase/)
 * [Active Topics](https://wordpress.org/support/theme/iknowledgebase/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/iknowledgebase/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/iknowledgebase/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [bigbankclub](https://wordpress.org/support/users/bigbankclub/)
 * Last activity: [8 months, 1 week ago](https://wordpress.org/support/topic/missing-bread-crumbs-mobile/#post-18667829)
 * Status: not resolved