Trouble displaying background image

Trouble displaying background image


Version:  jQuery Mobile: 1.2.0
URL: mobilehost.me/MP/menu.html

To Do: 
Display graphic for the header and overlay some text.

Problem: 
This is a very simple process and did it on PC site many times, however can't seem to locate why it's not showing up. I don't know if this makes any difference, I code using Dreamweaver CS5.5

This site is under development to learn jQuery so will look rough.

      CSS for myheader:
  1. .myHeader {
  2. background-image:url(images/Header.jpg);
  3. width:380px;
  4. height:175px;
  5. padding:4px
  6. background-repeat: no-repeat;"
  7. }

      styleshhet linksHeader code:
  1.  <link rel="stylesheet" type="text/css" href="myStyles.css">
  2. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
  3. <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
  4. <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
  5. </head> 

  6. <body> 

  7. <div data-role="page" id="menuPage"> 
  8. <div data-role="header" data-theme="e">
  9. <div class="myHeader">
  10. <h1 align="center">Marri's Italian</h1>
  11. <p style="font-size:14px; 
  12.  text-align:center;
  13.  padding-top:-50px;
  14.  padding-left:10px;">
  15. Family Restaurant<br>circa 1957
  16. </p>
  17. </div> 
  18. </div>