If you want to add a different logo to your header for different screen resolutions, you can use the code below. Change the URLs to point to your images. You can also adjust the width value to whatever you like. Make sure to put this inside of a script tag.
jQuery( document ).ready(function() {
if(jQuery(window).width() < 481){
jQuery(โ#logoโ).attr(โsrcโ,โhttps://www.yoursite.com/wp-content/uploads/yourlogo.jpgโ);
}else if(jQuery(window).width() > 480){
jQuery(โ#logoโ).attr(โsrcโ,โhttps://www.yoursite.com/wp-content/uploads/yourlogo-2.jpgโ);
}
});