Okay
  Public Ticket #627706
Mobile Menu Bar
Closed

Comments

  • Joakim started the conversation

    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?

  •  8,992
    Tahir replied

    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 

  • Joakim replied

    Perfect solution. Thx a lot!