Hi all,
I want to display the rows of a table on a single line. This is a problem in Internet Explorer 6 and 7 because setting the float attribute to left and the display to block won't do. And changing <tr>
s to <td>
s won't do either as these html elements are generated by a framework's code that i am not allowed to change.
Edit: Some of you wanted the code, i dunno why it would help but here it is (specific images and classes have been edited out, the code is not available online, some-class may not be the same class everywhere)
<table class="some-class" width="100%" border="0"
cellspacing="0" cellpadding="0">
<tr class="some-class">
<td class="some-class">
<a href="#"><img src=pic.jpg"/></a>
<div class="some-class">
<div class="some-class">
<a href="#"><img src=pic.jpg"/></a>
<p></p>
<p></p>
</div> <a href="#"><img src=pic.jpg"/></a>
</div>
</td>
</tr>
<tr class="some-class">
<td class="some-class">
<a href="#"><img src=pic.jpg"/></a>
<div class="some-class">
<div class="some-class">
<a href="#"><img src=pic.jpg"/></a>
<p></p>
<p></p>
</div> <a href="#"><img src=pic.jpg"/></a>
</div>
</td>
</tr>
<tr class="some-class">
<td class="some-class">
<a href="#"><img src=pic.jpg"/></a>
<div class="some-class">
<div class="some-class">
<a href="#"><img src=pic.jpg"/></a>
<p></p>
<p></p>
</div> <a href="#"><img src=pic.jpg"/></a>
</div>
</td>
</tr>
</table>