Site logo

Archived topic

How to Change Search Icon Color (make it different c between Mobile and desktop)

1 reply · Started by Al Kwarismi Arya on May 27, 2022

Viewing posts 1–2 of 2

Hi Team,
Good day!

I have a little trouble making the search icon colors on mobile and desktop different. Any CSS I can try to make it different?

This is the web what I mean, url web.

Hi there,

You can use this CSS, the red color is for desktop, and the blue color is for mobile, just replace them with your color :)

.menu-bar-item.search-item a {
   color: red;
}
@media (max-width: 768px) {
   .menu-bar-item.search-item a {
       color: blue;
    }
}
This archived topic is closed to new replies.