I have the following HTML that I would like to take and use a higher resolution image for Retina Displays via CSS. I'm just not sure how to do this, or if I have to completely change my HTML as well.
<a class="navbar-brand " href="/">
<img src="/utilities/file_library/images/logo.jpg" alt="Store">
</a>
Thank you.
I encountered this not long ago myself and I found this article very informative in the matter: css-techniques-for-retina-displays.
Now TLDR?
Alternate high resolution pixels via pixel size ratio media queries.
Most people would use plenty of icons in their site, use face fonts instead of icons.
Use SVG images whenever you can.