Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1350959

    Hi! The breadcrumbs in the articles of my site are not readable and they are cut (on mobile version).
    Maybe, because of the lenght of the titles.
    Could someone help me??

    • This topic was modified 3 years, 2 months ago by C.
    #1350992

    Hey C,

    Thank you for the inquiry.

    Where can we see the issue? Please post the site URL in the private field so that we can check the breadcrumbs. You might be able to limit the post title by using this filter in the functions.php file.

    function avf_max_title_length( $title ) {
    	$max = 70;
    
    	if( strlen( $title ) > $max ) {
    		return substr( $title, 0, $max ) . "…";
    	} else {
    		return $title;
    	}
    }
    add_filter( 'the_title', 'avf_max_title_length');
    

    Related thread: https://kriesi.at/support/topic/breadcrumb-length/#post-1222529

    Best regards,
    Ismael

    #1351196
    This reply has been marked as private.
    #1351218

    Hey,

    Thanks for contacting us!

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

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

    Best regards,
    Yigit

    #1351261

    It works!
    Thank you so much! fantastic

    #1351262

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Enjoy the rest of your day!

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Breadcrumbs do not read in full on mobile version’ is closed to new replies.