Tagged: 

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

    Hello Kriesi,

    I have breadcrumbs on our site that have correct margins when displayed on desktop however they get distorted on mobile view (see screenshot below in private).
    I would like to make sure that the margins remain the same on mobile view (the breadcrumbs end up at the top of the breadcrumbs blue bar instead of centered.

    I have some CSS for the breadcrumbs section and tried making adjustments wehn inspecting element however still unable to get the mobile correct.
    Please let me know what I can add so the breadcrumbs stay centered on mobile view.
    Thank you!

    /***************************
    Adjust Overlap of Logo on Menu and Title on breadcrumbs section
    ***************************/

    @media screen and (max-width: 1136px) {
    #advanced_menu_toggle { display: block !important; }
    nav.main_menu { display: none !important; }
    }

    /**************************
    breadcrumbs left aligned position
    ***************************/
    .title_container .breadcrumb {
    font-size: 11px;
    left: 50px;
    line-height: 15px;
    margin-top: -7px;
    position: absolute;
    top: 50%;
    z-index: 10;
    }

    #805702

    By the way, I tried this from a previous post put didnt change the top alignment:

    @media only screen and (max-width: 767px) {
    .responsive .title_container .breadcrumb {
    top: 0px!important;
    }}

    Thanks

    #805706

    Hi,

    Please provide a link the site in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #805725

    site below.

    Thank you!

    #805780

    Hi,

    Add the following to quick css:

    @media only screen and (max-width: 767px) {
    
    .responsive .title_container .breadcrumb{
    top:12px!important;
    }
    
    }

    Let me know if this works.

    Best regards,
    Jordan Shannon

    #805783

    Worked like a charm!!

    Thanks Jordan!

    #805785

    Hi,

    No problem at all. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Breadcrumbs margins on mobile view’ is closed to new replies.