Skip to main content
Known Participant
October 16, 2013
Question

RH 10 Update Added Space to Numbered Lists

  • October 16, 2013
  • 1 reply
  • 2625 views

All,

I've seen a couple of other posts about this topic, but answers do not really seem to solve the entire problem.

I just updated my project from RH9 to RH10.  Now EVERY numbered (and bulleted) list in the program has extra space between lines - only in design mode, not when previewed or published.  I found a post that suggested editing the CSS directly which I did try - but it does not automatically update existing lists.  If I create a new list now, all is right with the world - but my hundreds and hundreds of existing topics look like crap in design mode.

Any ideas of what I can do?  BTW - My RH 9 project with the unedited CSS still looks great.

Thanks!

Chris

    This topic has been closed for replies.

    1 reply

    Willam van Weelden
    Inspiring
    October 16, 2013

    What does your CSS and the HTML of the lists look like?

    Perhaps it's something in the CSS, perhaps in the HTML. If it's in the HTML, a script can probably take care of it.

    Greet,

    Willam

    KoprivaAuthor
    Known Participant
    October 16, 2013

    William,

    Thanks for the response.  I admit to being a little out of my league with this stuff.

    This is the CSS text:

    P {

    font-family: Verdana;

    font-size: 8pt;

    margin-top: 14pt;

    margin-bottom: 14pt;

    }

    LI.P {

    font-family: Verdana;

    font-size: 8.0pt;

    This is the HTML:

    <li><p><span style="font-size: 8.0pt; font-family: Verdana, sans-serif;

           mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';">C</span><span

        style="font-size: 8.0pt; font-family: Verdana, sans-serif;

        mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';

        line-height: normal;">lick the</span> <span style="font-weight: bold;">Account

        Manager</span> <span style="font-size: 8.0pt; font-family: Verdana, sans-serif;

              mso-fareast-font-family: 'Times New Roman';

              mso-bidi-font-family: 'Times New Roman';

              line-height: normal;">button in the

        Main group of the program's sidebar to access Account Manager.</span></p></li>

       <li><p style="margin-top: 14.0pt; margin-right: 0in;

          margin-bottom: 14.0pt; margin-left: 0in; line-height: normal;"><span

        style="font-size: 8.0pt; font-family: Verdana, sans-serif;

        mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';">Find

        the account for which you wish to assign default discount

        rates.<b><i><br />

    Willam van Weelden
    Inspiring
    October 17, 2013

    Can you add the following code to the CSS and see what happens:

    LI P {

    margin-top: 0;

    margin-bottom: 0;

    }

    Greet,

    Willam