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!
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!.