Since you're using tables you'll have to put a the img in a rowspan  
that spans the length you want. A coding example will show better -

This is your's:
<tr>
        <td class="proj_col_one"><img src="images/proj_fin_barclaysHQ.jpg"  
class="proj-image"></td>
        <td class="proj_col_two">Duration:</td>
        <td class="proj_col_three">June 2001 to Present</td>
</tr>
<tr>
        <td class="proj_col_one"></td>
        <td class="proj_col_two">Description:</td>
        <td class="proj_col_three">Business relocation from twelve premises  
[...] </td>
</tr>

Change it to this:
<tr>
        <td class="proj_col_one" rowspan="2"><img src="images/ 
proj_fin_barclaysHQ.jpg" class="proj-image"></td>
        <td class="proj_col_two">Duration:</td>
        <td class="proj_col_three">June 2001 to Present</td>
</tr>
<tr>
        <td class="proj_col_two">Description:</td>
        <td class="proj_col_three">Business relocation from twelve premises  
[...] </td>
</tr>

Add rowspan="2" in the first proj_col_one <td> and take away the  
proj_col_one <td> in the following row. If I remember my tables  
correct that should solve your prob.

Eystein

On Nov 17, 2005, at 11:44 AM, Virtuallee wrote:

> Hi
>
> Does anyone know how to stop the text on this page from being pushed
> below the image?
>
> http://www.cgc.co.uk/projects_financial.html
>
> Thanks!
> Lee
>
> ______________________________________________________________________
> css-discuss [EMAIL PROTECTED]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to