The quick way would be to put this in your skin:
af|column::cell-text .OraTableBorder1111 DIV {
display: none;
}
On 9/28/07, Chris Hane <[EMAIL PROTECTED]> wrote:
> I have a column that displays two images in it. I would like the images to
> be displayed side/by side. However, a <div/> element is being inserted
> between the images.
>
> Thoughts on how I can format this so that the div is not displayed?
>
> Thanks,
> Chris....
>
> Here is the XHTML (facelets):
>
> <tr:column headerText="Status" noWrap="true">
> <tr:image source="/img/status/good.png"/>
> <tr:image source="img/status/recommended.png"
> </tr:column>
>
>
> ...And this is the html produced:
>
> <td class="af_column_cell-text OraTableBorder1111" nowrap="">
> <img src="/learn-local/img/status/thumbup.png"/>
> <div/>
> <img src="img/status/greexlclaim.png"/>
> </td>
>
>