Placing image to the left of a blog post |
![]() ![]() |
Placing image to the left of a blog post |
May 13 2009, 10:00 AM
Post
#1
|
|
![]() talent on another level ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 746 Joined: Oct 2006 Member No: 475,735 |
I am trying to achieve this image placement in Wordpress on my post as shown on this website:
http://giant.blackplanet.com/ How can I do this? |
|
|
|
May 13 2009, 12:01 PM
Post
#2
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
oh, the power of floating.
CODE .alignleft { float:left; margin:0 0 0 20px; } .alignright { float:right; } .clear { display:block; height:0; visibility:hidden; } CODE <div> <img src="URL" class="alignleft" alt="" /> <div class="alignright"> text, text, text. </div> <div class="clear"></div> </div> the extra class, .clear, is really optional. it depends on how you have the container div displayed. if it's being displayed as a block element (default display), and not a table (which doesn't even work in IE), then when you float different elements inside the div, it won't retain its height. there are many other ways to do it, but this is usually one of the easiest, as you can put whatever you want in the div that's aligned to the right without any problems. |
|
|
|
May 24 2009, 12:14 PM
Post
#3
|
|
![]() talent on another level ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 746 Joined: Oct 2006 Member No: 475,735 |
its not working right
|
|
|
|
May 26 2009, 03:16 PM
Post
#4
|
|
![]() Member ![]() ![]() Group: Official Designer Posts: 10 Joined: Oct 2008 Member No: 692,614 |
either use
CODE <img src="URL" style="float:left" /> or CODE <style type="text/css"> img.left { float:left; } </style> CODE <img src="URL" class="left" />
|
|
|
|
May 28 2009, 01:14 AM
Post
#5
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
|
|
|
|
![]() ![]() |