Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #770954

    Dear Support Team

    I would like to change the order of title and breadcrumb in functions.php in enfold child. I would like to have first the breadcrumb and second the title. How can I achieve this?

    Kind regards
    Jeannette

    #770977

    Hey Jeannette,

    Just add this custom CSS code at Enfold Theme Options > General Styling > Quick CSS

    
    .main-title {
    float: right;
    }
    
    .title_container .breadcrumb{
    right: initial !important;
    }
    

    Best regards,
    John Torvik

    #771017

    Dear John

    Thank you for your fast response. But I need the title underneath the breadcrumb, both aligned on the left side. I don’t think, this can be achieved with CSS, because the containers are in a wrong order. Or do you see a possibility?

    Kind regards
    Jeannette

    #772457

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .title_container .breadcrumb {
        left: 50px;
    }
    .title_container .main-title {
        top: 15px;
    }
    

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.