Okay
  Public Ticket #1731706
hide breadcrumbs on mobile
Closed

Comments

  • Julian started the conversation

    hey there, 

    is there a way to hide breadcrumbs on mobile? 


    Thanks :)

  •  476
    Charmy replied

    Hi,

    You can use this code to hide the breadcrumb on mobile. You can install and active the childtheme, and put this code into file style.css of childtheme.

    @media only screen and (max-width: 736px) {
        .ftc-breadcrumb{
            display: none !important;
        }    
    }
    


    Best regards,

    Charmy  - ThemeFTC technical expert

  • Julian replied

    AWESOME! It worked :) Thank you