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:
- .myHeader {
- background-image:url(images/Header.jpg);
- width:380px;
- height:175px;
- padding:4px
- background-repeat: no-repeat;"
- }
styleshhet linksHeader code:
- <link rel="stylesheet" type="text/css" href="myStyles.css">
- <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
- <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
- <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
- </head>
- <body>
- <div data-role="page" id="menuPage">
-
- <div data-role="header" data-theme="e">
- <div class="myHeader">
- <h1 align="center">Marri's Italian</h1>
- <p style="font-size:14px;
- text-align:center;
- padding-top:-50px;
- padding-left:10px;">
- Family Restaurant<br>circa 1957
- </p>
- </div>
- </div>