The menu bar icon is transparent for somewhat reason when viuwed at at mobile device. I have never seen this problem before with the theme. How do I fix this?
Try opening your functions.php file and changing these items:
wp_enqueue_style(\'font-awesome\');
wp_register_style(\'font-awesome\', get_template_directory_uri() . \'/css/font-awesome.min.css\');
to this:
wp_enqueue_style(\'font-awesome-2\');
wp_register_style(\'font-awesome-2\', get_template_directory_uri() . \'/css/font-awesome.min.css\');
Also, if you’re using page transitions, change the method to the standard option form the “AJAX” one
The menu bar icon is transparent for somewhat reason when viuwed at at mobile device. I have never seen this problem before with the theme. How do I fix this?
Hey,
Try opening your functions.php file and changing these items:
wp_enqueue_style(\'font-awesome\');
wp_register_style(\'font-awesome\', get_template_directory_uri() . \'/css/font-awesome.min.css\');
to this:
wp_enqueue_style(\'font-awesome-2\');
wp_register_style(\'font-awesome-2\', get_template_directory_uri() . \'/css/font-awesome.min.css\');
Also, if you’re using page transitions, change the method to the standard option form the “AJAX” one
Cheers
ThemeNectar Support Team
Perfect solution. Thx a lot!