Re: Make breadcrumb font size smaller on mobile only

Hello!

Is there a simple way to set breadcrumb font size for mobile only?

I don’t want to change all mobile font size. Only the breadcrumb font size.

Thanks!

Never mind. ChatGPT answered my question. Lol

@media screen and (max-width: 750px) {
  .breadcrumb {
    font-size: 12px; /* Adjusted for mobile */
  }
}

Thanks, AI!.