Howdy,
My users are using Telerik Rad Editor for creating content. The content looks one way in the editor (the "correct" way) and when it's rendered through IE it looks different (wrong).
They will do something like this (HTML source below)
<table><tr>
<td>Some content here <br/><br/></td>
</tr>
<tr>
<td>And some other here <br/><br/></td>
</tr>
<tr>
<td>And finally some here too <br/><br/></td>
</tr>
</table>
So the output looks like this when it's rendered in IE
Some content here
And some other here
And finally some here too
And what they want is to show the two spaces after each line, so it's more like
Some content here
And some other here
And finally some here too
They want to see two lines of space... Can I control this with CSS at all?