Hello,
Please find the following code in the css/responsive.css File:
@media
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 991.98px),
only screen and ( min--moz-device-pixel-ratio: 2) and (max-width: 991.98px),
only screen and ( -o-min-device-pixel-ratio: 2/1) and (max-width: 991.98px),
only screen and ( min-device-pixel-ratio: 2) and (max-width: 991.98px),
only screen and ( min-resolution: 192dpi) and (max-width: 991.98px),
only screen and ( min-resolution: 2dppx) and (max-width: 991.98px) {
#logo a.standard-logo { display: none; }
#logo a.retina-logo { display: inline-block; }
}
You can simply change the Values according to your needs to display the Retina Image in your Desired Resolution.
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.