Title: display image with every post
Last modified: August 18, 2016

---

# display image with every post

 *  [jmlau](https://wordpress.org/support/users/jmlau/)
 * (@jmlau)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/)
 * Hi,
    I’m using the “Durable v0.2.5” theme for my blog
 * is there some way to display a full-size image(s) in each post, so that there
   is one long scroll of images as on [http://woostercollective.com/](http://woostercollective.com/)
 * I tried clicking “full-size” and “not linked” when uploading the image and “sending
   to editor”, but the image only shows up on the first post, and subsequent posts
   only have text showing.
 * Please advise. Thanks kindly.
 * JM

Viewing 14 replies - 1 through 14 (of 14 total)

 *  [shadow](https://wordpress.org/support/users/shadow/)
 * (@shadow)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638388)
 * Are you uploading an image in every post though or only in the first post?
 *  Thread Starter [jmlau](https://wordpress.org/support/users/jmlau/)
 * (@jmlau)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638433)
 * i’m uploading an image with every post.
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638453)
 * Never ask display/layout questions without referring to your theme, without giving
   a link etc.
 * Does it work if you switch to the default theme?
 *  [mendezki](https://wordpress.org/support/users/mendezki/)
 * (@mendezki)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638457)
 * I guess this theme displays the full post for the newest post, and a title/excerpt
   for previous posts. To show all posts’ contents on the index page you’d need 
   to adapt index.php. A link to your site would be handy, as the theme’s demo site
   doesn’t seem to work.
 *  Thread Starter [jmlau](https://wordpress.org/support/users/jmlau/)
 * (@jmlau)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638470)
 * hi, here’s the link to my site: [http://www.pragueviewfinder.com/](http://www.pragueviewfinder.com/)
   pardon delay.
 * yes, it does work with the default theme, though the images are all sorts of 
   weird proportions. i find each theme sizes the images differently and i adjust
   them with width and height tags.
 * re durable: how do i adapt the index.php. first, i’m not sure how to acess the
   index.php, since it’s not an option in the theme editor. do i need to download
   it to my local folder and edit it directly with a text editor like bbedit? i 
   was using dreamweaver but that doesn’t seem to show the html.
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638475)
 * 1. Never edit any WP files with DW – its’ bad karma 🙂
    2. A plain editor should
   work fine. 3. Yes, edit the files on your computer. The online editor a) is dangerous
   b) doesn’t have an UNDO button
 * If it work normally with other themes – you need to edit the index of your theme.
   If it uses [the_excerpt](http://codex.wordpress.org/Template_Tags/the_excerpt)
   tag, that strips all the html… (read the docs)
 * As for the pics: NO, it is not the browsers… it is you. You should resize properly
   every image of yours before uploading! WP doesn’t do it for you…
 *  Thread Starter [jmlau](https://wordpress.org/support/users/jmlau/)
 * (@jmlau)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638476)
 * re last para: i see now the index.php is in the theme editor as “main index template”.
   is this the file that should be adapted as was suggested? if so, how? thanks
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638478)
 * Too much posting stops you from reading carefully the replies 🙂
 *  Thread Starter [jmlau](https://wordpress.org/support/users/jmlau/)
 * (@jmlau)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638483)
 * is it just me or is there a zen subtext to this thread? 🙂
 * thanks for the lead… i’ll read up on the excerpt tag and let you know how it 
   goes.
 *  [mendezki](https://wordpress.org/support/users/mendezki/)
 * (@mendezki)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638484)
 * I see a `<?php the_excerpt() ?>` on line 55 that is in dire need of being replaced
   by `<?php the_content() ?>`.
 * You can edit the html just fine in Dreamweaver, just hit the Code button somwhere
   at the top of your document window, or go to menu item View > Code.
 *  Thread Starter [jmlau](https://wordpress.org/support/users/jmlau/)
 * (@jmlau)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638538)
 * thank you so much for the help, especially the specific line change mendezki…
   worked like a charm. 🙂
 *  Thread Starter [jmlau](https://wordpress.org/support/users/jmlau/)
 * (@jmlau)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638540)
 * one more related question….any ideas how to get the text to go under the image,
   as in the first post? the ALIGN LEFT tag seemed to work before, but now doesn’t
   seem to…
 *  [mendezki](https://wordpress.org/support/users/mendezki/)
 * (@mendezki)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638541)
 * Alignment and stuff like that are done with css:
    Edit the properties for the
   images in your cssstyles.php file:
 *     ```
       .entry img
       float:left;
       margin:0pt 10px 10px 0pt;
       }
       ```
   
 * to
 *     ```
       .entry img
       margin:0pt 10px 10px 0pt;
       }
       ```
   
 *  Thread Starter [jmlau](https://wordpress.org/support/users/jmlau/)
 * (@jmlau)
 * [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638544)
 * Thanks so much mendezki….that worked for all but the first post….any ideas?

Viewing 14 replies - 1 through 14 (of 14 total)

The topic ‘display image with every post’ is closed to new replies.

 * 14 replies
 * 4 participants
 * Last reply from: [jmlau](https://wordpress.org/support/users/jmlau/)
 * Last activity: [18 years, 7 months ago](https://wordpress.org/support/topic/display-image-with-every-post/#post-638544)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
