I'm trying to set up a logo/banner with a link to the home page with the logo/banner in 3 different sizes for Responsive with media queries but the images aren't loading when I test the site online.
Can anyone see what's wrong in my code?
=======the HTML ==========
<div id="header">
<!--#include file="header.txt" -->
</div>
The header.txt file :
<a href="index.html"><div id="logobanner"> </div></a>
======the CSS==========
#header { margin:0 auto; }
Desktop:
#logobanner {background: url(images/header-desktop.jpg) top center no-repeat; }
Mobilie:
#logobanner {background: url(images/header-mobile.jpg) top center no-repeat; }
Tablet:
#logobanner {background: url(images/header-mobile.jpg) top center no-repeat; }
=========the 3 images ======
The 3 images are all in the images folder using exact names as listed above.