Site logo

Archived topic

Svg menu icon bars fatter

7 replies · Started by Juan Jose on November 6, 2020

Viewing posts 1–8 of 8

I want to make the svg menu icon bars fatter in mobile, how can I do that?

My web is https://tusredactores.com

Thanks

svg menu icon bars now
svg menu icon bars fatter (I want this)

Hi there,

You can replace the bars SVG with your own using a filter:

add_filter( 'generate_svg_icon_element', function( $output, $icon ) {
    if ( 'menu-bars' === $icon ) {
        $output = 'YOUR SVG HTML HERE';
    }

    return $output;
}, 10, 2 );

Hope this helps :)

Now the "X" that had disappeared, how can I load an "svg" when the menu is open?

Can you copy and paste the code you are adding here?

Please make sure to click the CODE button in the editor.

add_filter( 'generate_svg_icon_element', function( $output, $icon ) {
    if ( 'menu-bars' === $icon ) {
        $output = '<svg viewBox="0 0 100 80" width="40" height="40">
  <rect width="100" height="20"></rect>
  <rect y="30" width="100" height="20"></rect>
  <rect y="60" width="100" height="20"></rect>
</svg>';
    }

    return $output;
}, 10, 2 );

The svg icon changes, but when I open the menu it disappears.


Is there any way we can see this issue on the site? I'm still seeing the old icon.

This archived topic is closed to new replies.