Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #280439

    Hi,

    I need to move the breadcrumb in the entries of the blog. The new position is under the featured image, on the left side.

    Thanks in advance.

    #280552

    Hi effectandaffect!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .template-blog .post .entry-content-wrapper {
    clear: left;
    }

    then add this code to Functions.php file in Appearance > Editor

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    	   jQuery(".single-post .avia-breadcrumbs").appendTo(".single-post .big-preview.single-big");
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Yigit

    #280572

    Thanks Yigit!

    Some problems ;-)

    I would like to disappear the bar with the title and the breadcrumb in one single line. I attached a capture

    http://s216172175.mialojamiento.es/capture.png

    Thanks in advance.

    #280575

    Hi!

    Can you post the link to your website?

    Cheers!
    Yigit

    #280596
    This reply has been marked as private.
    #280602

    Hi!

    Please add following code to Quick CSS as well

    .breadcrumb-trail {
    width: auto!important;
    }

    Best regards,
    Yigit

    • This reply was modified 10 years, 9 months ago by Yigit.
    #280637
    This reply has been marked as private.
    #280661

    Hey!

    I have edited the code i posted here – https://kriesi.at/support/topic/change-breadcrumb-position-2/#post-280602
    Please try it now

    Regards,
    Yigit

    #280668

    Hi!

    Now,

    Order: Yes
    /: Yes
    One single line: No

    Best,

    #280672

    Hey!

    Do you mind creating a temporary admin login and posting it here privately so i can take a look?

    Cheers!
    Yigit

    #280675
    This reply has been marked as private.
    #280683

    Hi!

    Please review your website now. I have added custom CSS code to bottom of Quick CSS field in Enfold theme options

    Regards,
    Yigit

    #280695

    Thanks a lot Yigit, it looks perfect!

    Best regards,

    #280696

    Hi!

    You are welcome, always glad to help :)

    Cheers!
    Yigit

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Change breadcrumb position’ is closed to new replies.