Okay
  Public Ticket #2114979
Different Logo for mobile
Closed

Comments

  • tsween1 started the conversation

    How can I add a different logo for mobile?

    So I want to replace the desktop logo with another logo when its mobile.

    Thanks,

    Tim


  •  675
    Neuron replied

    Hi Tim,

    You need a bit lines of jQuery to achieve that, you can add it on the Theme Options > Custom CSS & JS section at the jQuery. http://prntscr.com/osjxjj

    jQuery(document).on('ready', function($) {
        if (jQuery(window).width() < 991) {
            jQuery('header .logo-img a img').attr('src', 'https://placehold.it/50x50');
        }
    });

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.