Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Adding an image to a jquery mobile page and unable to prevent it from repeating. OK for mobile devices but when viewed on tablet or desktop it is not OK to repeat' Thanks!

<!DOCTYPE html> 
<html>
<head>
<meta charset="UTF-8">
<title>jQuery Mobile Web App</title>
<link href="../jquery-mobile/jquery.mobile-1.0a3.min.css" rel="stylesheet" 
type="text/css"/>
<script src="../jquery-mobile/jquery-1.5.min.js" type="text/javascript"></script>
<script src="../jquery-mobile/jquery.mobile-1.0a3.min.js"
type="text/javascript"></script>

</head> 
<body> 

<div data-role="page" id="page1" data-theme="b"  style="background-
image:url(images/bkgrnd-7.jpg)">

<div data-role="header">
<h1>Page One</h1>
</div>

</div>
<div data-role="content">
 Content        
</div>

<div data-role="footer">
<h4>Page Footer</h4>
</div>

<!--Additional pages and content with their own backgrounds...-->

</div>

</body>
</html>
share|improve this question

2 Answers

background:url(images/bkgrnd-7.jpg) no-repeat;
share|improve this answer
I am so sorry for my ignorance but where would I place this code? I tried it in place of the style="background-image:url(images/bkgrnd-7.jpg)" but it didn't work. – Tom Sep 2 '11 at 2:30
maybe you trying to put no-repeat to background-image? if so, it wouldn't work there, background should. – Dmitry F Sep 2 '11 at 2:38
style="background:url(images/bkgrnd-7.jpg) no-repeat;" – Dmitry F Sep 2 '11 at 2:39
OK that got it so it doesn't repeat!!! Any ideas on how to center the image and keep it there regardless of screen size? The buttons I have on the page remain centered on all screens (tablets, desktop etc) but the image is to the left on tablets and desktop now. Thank you so much for your help so far! – Tom Sep 2 '11 at 4:00
Think I found it style="background:url(images/bkgrnd-7.jpg) no-repeat; background-position:center" Seems to work – Tom Sep 2 '11 at 4:05
show 1 more comment

You would add the CSS property no-repeat to the background image and make it dependent on the media rules property of CSS3.

@media screen /*Computer screen*/
@media handheld /*Mobile devices*/

but keep in mind that a tablet may be considered a mobile device or a regular screen.

so you can do something like this

@media screen and (min-device-width: 480px) and (max-device-width: 800px)
@media handheld and (min-device-width: 480px)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.