Hi - have done a bit of css but I just can’t seem to get this right:
Trying to get the text to “wrap” around the image on this page: http://www.thecouragecorner.com.au/testimonials/ - the image is in the right spot (i.e. “floated to the right”) but I wnat the text underneath to justify to the top, left of the image (the same as this page: http://www.thecouragecorner.com.au/about/
The difference between teh latter example is that I’ve inserted the image via Ibrowser. The former is done thru custom fields and EE tags - (for this client I want to rely less on plugins and mroe so on templating code thru EE for better management) - here’s the EE template code I’m using:
{embed="embeds/html_header" my_page_title="Testimonials"}
<body>
<div id="wrap">
<div id="header">
{embed="embeds/logo_title"}
{embed="embeds/main_nav"}
</div><!-- end header -->
<div id="content">
{embed="embeds/ad"}
<div id="text">
<h1>What Other's Say About The Courage Corner…</h1>
{exp:weblog:entries weblog="testimonials" disable="categories|member_data|pagination|trackbacks" sort="desc"}
{if t_image}
<div class="float-right-image">
{t_image}
<i>{t_desc}</i>
</div>
{/if}
<blockquote>
{t_body}
<i><strong>{t_person}</strong></i>
</blockquote>
<div class="clear"></div>
{/exp:weblog:entries}
</div><!-- end text div -->
<div id="sidebar">
{embed="embeds/sidebar_content"}
</div><!-- end sidebar -->
</div>
<!-- end content -->
</div>
<!-- end wrap -->
<div id="footer">
{embed="embeds/footer"}
</div>
{embed="embeds/google_analytics"}
</body>
</html>Ok any help would be much appreciated - have tried a ot of things and my css knowlegde isn;ty very good :-(