Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #447658

    Hi,

    I would like to remove the breadcrumbs and small header bar (The bar that the breadcrumbs are located) from mobile phones.
    So far I was able to remove the breadcrumbs with this:

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

    Can this be appended to remove the small bar?

    Thank you

    Vince

    #448024

    Hey Vincent!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 767px) {
    #header_meta { display: none !important; }}

    Regards,
    Yigit

    #448109

    Hi Yigit,

    Unfortuantely that did not work. I tried a few variations and the top small bar is still there.

    Vincent

    #448945

    Hi Vincent,

    Can you post the link to your website please?

    Regards,
    Josue

    #449042
    This reply has been marked as private.
    #449095

    Hey Vincent!

    I see what you’re referring to, use this code:

    @media only screen and (max-width: 480px) {
        .title_container {
            display: none;
        }
    }

    Best regards,
    Josue

    #449147

    That worked well Josue,

    Thanks very much

    Vince

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Remove Small Header Bar from Mobile Devices’ is closed to new replies.