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??
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
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
It works!
Thank you so much! fantastic
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