Site logo

[Support request] change search icon

Home Forums Support [Support request] change search icon

Home Forums Support change search icon

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1835342
    Rohith

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

    #1835378
    Tom
    Lead Developer
    Lead Developer

    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!

    #1835393
    Rohith

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

    #1835554
    David
    Staff
    Customer Support

    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;
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.