• Resolved upbeatguy

    (@upbeatguy)


    I have Ubuntu chosen as my font choice in Divi Theme Customiser.

    When choosing font weights in Max Mega Menu I can only see weights 300, 400 and 700. It doesn’t list 500.

    Any idea how I can get that to be available please?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author megamenu

    (@megamenu)

    Hi upbeatguy,

    Please try adding this to your themes functions.php file:

    function add_500_font_weight($weights) {
    	$weights['500'] = "Medium (500)";
    	return $weights;
    }
    add_filter('megamenu_font_weights', 'add_500_font_weight');

    Then you should find the Medium (500) option in the font size selectors.

    Regards,
    Tom

    Thread Starter upbeatguy

    (@upbeatguy)

    Thanks Tom – that worked fine!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Ubuntu font weight 500 not recognised’ is closed to new replies.