Posted: Fri Jan 18, 2008 10:37 am How to put image - text - image - text all side by side
Hello
I'd like to put horizontally on one line an image then text, then another image and again text. However so far I only managed to put text on the right of an image.
I have the following code withe follwing result:
<a href="/work/15605/book/20882046">
<img style="height: 100px; float:left; vertical-align:text-top; margin-right:10px;" src="http://images.amazon.com/images/P/0575079096.01._SX140_SCLZZZZZZZ_.jpg"/></a><a href="/work/15605/book/20882046"> The Stars My Destination</a>
by <a href="/author/besteralfred"> Alfred Bester</a>
<a href="/catalog_bottom.php?tag=The+Stars+My+Destination&view=pivox"> In my catalog</a>
<a href="http://images.amazon.com/images/P/0575079096.01._SX140_SCLZZZZZZZ_.jpg">Bigger cover</a>
However I'd like the following:
(Same as above but twice and all on one line like below)
Joined: 28 Feb 2007 Posts: 1408 Location: Biloxi, MS
Posted: Sun Jan 27, 2008 12:34 am
Don't really like using absolute positing, but this will allow you to have some control of where the text is positioned. Just set all the borders from 1px to 0 if you don't want borders.
img { height: 100px; }
</style>
</head>
<body>
<div id="left">
<a href="/work/15605/book/20882046"><img src="http://images.amazon.com/images/P/0575079096.01._SX140_SCLZZZZZZZ_.jpg" alt=""></a><div id="text_left"><a href="/work/15605/book/20882046"> The Stars My Destination</a><br>by <a href="/author/besteralfred"> Alfred Bester</a><br><a href="/catalog_bottom.php?tag=The+Stars+My+Destination&view=pivox"> In my catalog</a><a href="http://images.amazon.com/images/P/0575079096.01._SX140_SCLZZZZZZZ_.jpg">Bigger cover</a></div></div>
<div id="middle">
<a href="/work/15605/book/20882046"><img src="http://images.amazon.com/images/P/0575079096.01._SX140_SCLZZZZZZZ_.jpg" alt=""></a><div id="text_middle"><a href="/work/15605/book/20882046"> The Stars My Destination</a><br>by <a href="/author/besteralfred"> Alfred Bester</a><br><a href="/catalog_bottom.php?tag=The+Stars+My+Destination&view=pivox"> In my catalog</a><a href="http://images.amazon.com/images/P/0575079096.01._SX140_SCLZZZZZZZ_.jpg">Bigger cover</a></div></div>
<div id="right">
<a href="/work/15605/book/20882046"><img src="http://images.amazon.com/images/P/0575079096.01._SX140_SCLZZZZZZZ_.jpg" alt=""></a><div id="text_right"><a href="/work/15605/book/20882046"> The Stars My Destination</a><br>by <a href="/author/besteralfred"> Alfred Bester</a><br><a href="/catalog_bottom.php?tag=The+Stars+My+Destination&view=pivox"> In my catalog</a><a href="http://images.amazon.com/images/P/0575079096.01._SX140_SCLZZZZZZZ_.jpg">Bigger cover</a></div></div>
</body></html>
The div#text_left, div#text_middle and div#text_right styling can be combined into one class if you don't need any styling separate from each other.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum