Site logo

Archived topic

change search icon

3 replies · Started by Rohith on June 25, 2021

Viewing posts 1–4 of 4

How to change search icon and reply it with some other svg icon using functions

Hi there,

Try this:

add_filter( 'generate_svg_icon_element', function( $output, $icon ) {
    if ( 'search' === $icon ) {
        $output = 'your SVG here';
    }

    return $output;
}, 10, 2 );

Hope this helps!

Can we able to change the svg search icon color to white?

Hi there,

if you mean the Themes Navigation Search Icon then you can use this CSS:

.main-navigation .menu-bar-item.search-item a {
    color: #ff0000;
}
This archived topic is closed to new replies.