Go Back   CodingForums.com > :: Client side development > General web building > Building for mobile devices

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 04-04-2012, 07:50 PM   PM User | #1
aaronhockey_09
Regular Coder

 
Join Date: Dec 2010
Posts: 411
Thanks: 21
Thanked 55 Times in 55 Posts
aaronhockey_09 is an unknown quantity at this point
Thumbs down Background Image Re-Size Depending on Window Size

Hey guys, so i am working on a site right now for mobile.
And all of the comments are wrapped in a Div like so

Code:
<div class="comment">
      <div class="comment_top"></div>
      <div class="comment_middle">
            <p>All of the comment info goes in here</p>
      </div>
      <div class="comment_bottom"></div>
</div>
The div's, comment_top, comment_middle, comment_bottom all have background images with specific widths right now.

Is there a way to make these Background Images re-size with the size of the window ( phone screen ). And not have a specific width.

If you have a smart phone you can go to www.stage.1cp.ca/discover/sort/recent

And view the comment area, right now because the width is specific, the right side is always cut off.
aaronhockey_09 is offline   Reply With Quote
Old 12-12-2012, 10:32 PM   PM User | #2
StevenHu
Regular Coder

 
Join Date: Jun 2011
Location: CA
Posts: 105
Thanks: 0
Thanked 10 Times in 10 Posts
StevenHu is an unknown quantity at this point
If you use the following, putting your image inside a div, size your images for the desktop screen, but when viewed in a mobile phone, the images will resize to fit:

<div style="width:100%">
<img src="xxxx.jpg" width="900px" style="max-width:100%">
</div>

The max-width will make sure the image never goes outside its container element -- in this case, the div.
__________________
Steve Husting
http://iphonedevlog.wordpress.com
StevenHu is offline   Reply With Quote
Reply

Bookmarks

Tags
background, change, image, mobile, resize

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 10:21 AM.


Advertisement
Log in to turn off these ads.