Posting multiple images
-
When I post multiple images how do I get them to be right next to each other side by side without the next image automatically being under the first. There are some blog posts I would like to have an image right next to another image. How do I do that?
The blog I need help with is: (visible only to logged in users)
-
Please paste the exact URL of your blog when asking questions here, or link your nickname to your blog (it’s linked to your myspace page now – you might care to change that). To give an answer that applies, we usually need a link to the blog.
-
-
As far as the images alone are concerned, you just set their alignment to left instead of none.
The problem in your case is that you’re using a flexible-width theme (here’s a reason why we need the link to the blog!). If you’ve got text after the images, setting image alignment to left will make the text wrap around. That might be ok with you. But if you want the text below the images, you need to add coding for tables (in the html post editor). For two images in a row, that would be
<table> <tr> <td>COMPLETE_IMAGE1_CODE_HERE</td> <td>COMPLETE_IMAGE2_CODE_HERE</td> </tr> </table> -
Note: if you use the table coding, you don’t have to change the alignment of the images – the table will take care of that.
-
-
The code for the images, exactly as shown above. All this has to be done in the HTML mode of the post editor.
-
-
You’re welcome. Two more notes:
– You might be interested in the “gallery” feature as well. See here:
http://gammagirl.wordpress.com/2008/07/27/not-the-official-wordpresscom-gallery-faq/
– Categories and tags perform exactly the same functions: there’s no point in tagging a post with tags identical to its categories.
-
-
- The topic ‘Posting multiple images’ is closed to new replies.