Dear Sparkling developer,
how are you? I hope everything is going well.
I added the Yoast breadcumbs in my theme with the following code into single.php file:
<?php if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<p id="breadcrumbs">','</p>');
} ?>
Now I would like to remove the breadcumbs from mobile version of my website.
I tried to add the following code into style.css file but unfortunately it doesn’t work properly.
@media only screen and (max-width: 767px) { .breadcrumb { display: none !important; } }