Title: Half Width on some iphones
Last modified: August 31, 2016

---

# Half Width on some iphones

 *  [davydram](https://wordpress.org/support/users/davydram/)
 * (@davydram)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/half-width-on-some-iphones/)
 * I have a website that shows the full screen on the mobile test screens and on
   my actual mobiles but shows half screen on some iphones.
 * I posted the screen shot here – [http://fairfaxsmiles.com/wp-content/uploads/2016/04/image1.png](http://fairfaxsmiles.com/wp-content/uploads/2016/04/image1.png)

Viewing 1 replies (of 1 total)

 *  [Eric](https://wordpress.org/support/users/ekyle/)
 * (@ekyle)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/half-width-on-some-iphones/#post-7284836)
 * Typically when you see this type of issue it means an element somewhere on the
   page is set to have a minimum or fixed width. In this particular case, the Accreditation5.
   jpg image is set to be 1034px wide and 100px tall and will not scale.
 *     ```
       <img style="border: 1px solid black; margin: 10px;" src="http://new.kingcoffeemug.com/wp-content/uploads/2016/03/Accreditation5.jpg" alt="" usemap="#Map" height="100" border="0" width="1034">
       ```
   
 * You would need to manipulate the image tag directly or setup CSS to override 
   the width and height.
 * HTML:
 *     ```
       <img style="border: 1px solid black; margin: 10px;" src="http://new.kingcoffeemug.com/wp-content/uploads/2016/03/Accreditation5.jpg" alt="" usemap="#Map" border="0" width="100%">
       ```
   
 * CSS:
 *     ```
       img[src*="Accreditation5"] {
           width:100% !important;
           height: auto !important;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Half Width on some iphones’ is closed to new replies.

## Tags

 * [iphone](https://wordpress.org/support/topic-tag/iphone/)
 * [Safari](https://wordpress.org/support/topic-tag/safari/)

 * 1 reply
 * 2 participants
 * Last reply from: [Eric](https://wordpress.org/support/users/ekyle/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/half-width-on-some-iphones/#post-7284836)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
