Are you uploading an image in every post though or only in the first post?
Thread Starter
jmlau
(@jmlau)
i’m uploading an image with every post.
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?
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
(@jmlau)
hi, here’s the link to my site: 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.
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 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
(@jmlau)
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
Too much posting stops you from reading carefully the replies 🙂
Thread Starter
jmlau
(@jmlau)
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.
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
(@jmlau)
thank you so much for the help, especially the specific line change mendezki…worked like a charm. 🙂
Thread Starter
jmlau
(@jmlau)
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…
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
(@jmlau)
Thanks so much mendezki….that worked for all but the first post….any ideas?