Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Dani

    (@danicasati)

    Any news about this request?

    Plugin Author Damian Góra

    (@damian-gora)

    Hello,

    The search icon has SVG format, so you can’t make it bolder. You can replace current SVG with new. Even you can replace with custom HTML:

    
    add_filter( 'dgwt/wcas/form/magnifier_ico', function ( $html ) {
        $html = '<i class="fas fa-search"></i>';
        return $html;
    });
    

    Sometimes it will be required custom CSS to fix position, color, or shape.

    You have to paste this code into functions.php in your child theme or use Code Snippets plugin.

    Best
    Damian

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Icon bolder’ is closed to new replies.