Hello everyone
I am trying to make an email in outlook 07 and I require a percentage width.
For example I have six numbers 100, 80, 60, 40, 20 and zero and I would like to create a bar graph. I have tried managed to create the chart using a fixed width of pixels, however I would like the item to be scalable and I do not want a scroll bar at the base.
I have checked the forums for an answer to this and about all of them say its not possible to use percentage widths and outlook 07, however some confirmation from people would be much appreciated.
<table cellpadding="2" cellspacing="0" width="98%">
<tr class="alt_col">
<td class="name"><strong>New Homes</strong></td>
<td class="fig">1,984</td>
<td class="bar"><img src="http://www.test.co.uk/i/r.gif" id="bar0" width="100%" height="15" alt="New Homes properties on website: 1,984" /></td>
</tr>
<tr class="">
<td class="name"><strong>Notting Hill</strong></td>
<td class="fig">319</td>
<td class="bar"><img src="http://www.test.co.uk/i/r.gif" id="bar0" width="80%" height="15" alt="Notting Hill properties on website: 319" /></td>
</tr>
<tr class="alt_col">
<td class="name"><strong>Shoreditch</strong></td>
<td class="fig">287</td>
<td class="bar"><img src="http://www.test.co.uk/i/r.gif" id="bar0" width="60%" height="15" alt="Shoreditch properties on website: 287" /></td>
</tr>
<tr class="">
<td class="name"><strong>Islington</strong></td>
<td class="fig">287</td>
<td class="bar"><img src="http://www.test.co.uk/i/r.gif" id="bar0" width="40%" height="15" alt="Islington properties on website: 287" /></td>
</tr>
</table>
However this does not work
The class of name and fig have fixed width's in pixels, however the class of bar has no form of width styling.
Thanking everyone in advance for their time.
Cameron