Home Forums Basel support forum About Page Heading

About Page Heading

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #144401

    FairFang730
    Participant

    About the page heading.
    The picture below shows the page heading displayed on the mobile phone. I want to know how to delete this arrow and show the breadcrumbs.
    And how to adjust the height of the page heading?

    Attachments:
    You must be logged in to view attached files.
    #144502

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    /*to show breadcrumbs on mobile*/
    @media (max-width: 991px){
    body .single-breadcrumbs-wrapper .woocommerce-breadcrumb, .single-breadcrumbs-wrapper .yoast-breadcrumb {
        display: block;
    	}
    }

    to the Theme Settings > Custom CSS > Moile:

    /*to hide arrows*/
    body .xbs-staff-panel {
        top: auto;
        right: 70px;
    	bottom:20px;
    }
    body .mobile-nav .searchform {
    background-color:green;
    }

    The height of the wrapper is changed by means of paddings:

    body .single-breadcrumbs-wrapper {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    Change both paddings as per your needs and add this code to the Theme Settings > Custom CSS > Global.

    Best Regards

    #144580

    FairFang730
    Participant

    Thank you for your answer, I added this code. Breadcrumbs have been successfully displayed. But the arrow is still there.

    Attachments:
    You must be logged in to view attached files.
    #144646

    Hello,

    Replace the code to hide arrows:

    body .basel-back-btn {
    display:none;
    }

    Best Regards

    #144671

    FairFang730
    Participant

    Thank you very much. The arrow is gone. There is another question how to make the breadcrumbs centered?

    Attachments:
    You must be logged in to view attached files.
    #144703

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Mobile:

    body .header-full-width .single-breadcrumbs-wrapper>.container{
    	    text-align: center;
    }

    Best Regards

    #144751

    FairFang730
    Participant

    they didn’t work, the breadcrumbs still left on mobile.

    #144759

    FairFang730
    Participant

    Breadcrumbs are now centered.
    The question now is how to make the product title not appear in the breadcrumbs?

    Attachments:
    You must be logged in to view attached files.
    #144839

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Mobile:

    body .woocommerce-breadcrumb span.breadcrumb-last{
        display:none;
    }

    Best Regards

    #144868

    FairFang730
    Participant

    I added this code. This can cause the breadcrumbs on other pages to be incomplete. I just want the breadcrumbs on the product page not to display the product title.

    #144885

    Hello,

    Please, replace this code to the Theme Settings > Custom CSS > Global:

    body.single .woocommerce-breadcrumb span.breadcrumb-last{
        display:none;
    }

    Best Regards

    #144977

    FairFang730
    Participant

    Thank you very much! issue has been fixed!

Tagged: 

Viewing 12 posts - 1 through 12 (of 12 total)

The topic ‘About Page Heading’ is closed to new replies.