Best method in JQM to use background image?
I want to use a background using a .png graphic I have to compliment the theme I'm using. I have tried placing styling the body attribute on the external CSS file without luck. I also created a CSS file in the header a page and again no luck.
I ran diagnostics on the CSS and page through Firefox and did not find anything in error. I hope someone can provide me with a solution. I also checked to ensure the correct folders where the graphic resides is correct.
Thanks in advance
Code Snippit of external CSS:
- /* Marri's CSS Stylesheet */
- @charset "utf-8";
- /* general styles */
- body {font-family: Arial;
- /* sets the base font size */
- font-size: 16px;
- margin-left: 0px; padding: 0px;
- /* srts the page background color to white */
- background-color: #fff;
- /* sets background */
- background-image: url(images/bgrounds/beige227.png);
- background-repeat: repeat;
- }
- /* Text Formatting */
- /* set page font size */
- .page { font-size: .8em;}
- /* causes the header banner to stretch the lenght of the screen */
- page .banner {width: 100%; height: 125px;}
- hr {width:50%; align:center;}
- .alignCtr {text-align: center;}
- h1 {font-size: 2em; text-align:center;}
- h2 {font-size: 1.5em; text-align:center;}
- h3 {font-size: 1.2em; text-align:center;}
- h4 {font-size: 1em;}
- .notes { font-size: .8em;"}
- .notesCntr { font-size: .8em; text-align: center;}
- .phonrLink {color:#000; text-align:center;}
- /* Layout */
- /* centers the page o screen center */
- .page { position: relative; margin: 0 auto 0 auto; max-width: 61.2em;}
- /* displays the header graphics */
- .page content{
- margin: .93em 1,25em 1.25em 0;
- padding: 1.25em;
- border: 1px solid #bdbdbd;
- background: #f1f1f1;}
- .subHeader {font-size: 1.3em;font-weight: bold; text-align:center;}
- .bottomMenu { font-size:.6em;
-
- /* positiong */
- #flt-l {float:left; margin-left: .93em;}
- #flt-r {float:right; margin-right: .93em;}
- .alignMap {text-align:center; margin: 0 auto 0 auto; padding: 4 4 4 4;}
- .footer {
- text-align:center;
- font-size:.8em;
- font-weight:400;
- color:#000;}
- /* image sizing and positioning */
- .img_left {height:2em; width:2em; float:left; margin:0; padding: 4 4 4 4;}
- .img_right{height:2em; width:2em; float:right;margin:0; padding: 4 4 4 4;}
- .imgCtr {display: block; margin-left: auto; margin-right: auto }
- .footerAlignCtr {text-align:center; font-size: .8em; color:#000;}