Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1878
Formatting of UltraFormattedTextEditor
posted

Hi,

I'm not sure if this is the correct forum to post this question but it was the best I found Smile

I'm using an UltraFormattedTextEditor to display several entries that should be simply formatted. Each entry consists of a header that I want to display in bold letters and a text that I want to display in regular letters. I formatted it like follows:

<p style='font-weight:bold;'>Header</p>
<p style='font-weight:normal;'>Text</p>

This looks nearly as I wanted but there is one blank line between the header and the text where I could not find a reasonable way to remove this line or set the numbers of pixels. Is there somewhere an overview of the tags that can be used for formatting of the UltraFormattedTextEditor?

Kind regards,
  Wolfgang

Parents
  • 469350
    Verified Answer
    Offline posted

    Try this:

    <span style="font-weight:bold;">Header</span><br/>Text

    Note that I figured this out by going into the designer for the Value property and just typing in the text (with the line break) and then selecting the "Header" text and clicking on the Bold button. Smile 

Reply Children