• Resolved barbarapaster

    (@barbarapaster)


    I needed to make my text smaller on one page so I used

    <span style=”font-size: x-small;”>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultricies varius mi, sit amet elementum mi semper nec. Aenean a nulla nec neque</span>

    The size is perfect but the leading (line spacing) remained the same. I kind of looks like it is double spaced now. Is there html code to change it? I don’t want to start changing code. Just looking for a little html.

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Unless you provide a link to a page demonstrating the problem, no one will be able to offer much in the way of assistance.

    I had satisfactory results with line spacing using this
    <td style="font-size:125%;line-height:130%;text-align:left;">
    Although that was within an html table, I guess
    it would work as well within a paragraph tag, like this:
    <p style="line-height:130%;">put content here</p>
    You can find out more by Googling CSS coding.

    Thread Starter barbarapaster

    (@barbarapaster)

    Thank you so much “eridout”!!!! That is all I needed — line-height:150%. You would not believe how long I was googling leading, line spacing… Arg. Thanks, Appreciated.

    BP, so glad it worked!

    Hello,

    I am indenting a list with this code at the beginning of each line (here’s the list:

    <p style=”text-indent: 2em;”>• Poor life choices</p>
    <p style=”text-indent: 2em;”>• Sense of powerlessness</p>
    <p style=”text-indent: 2em;”>• Feeling emotionally overwhelmed</p>
    <p style=”text-indent: 2em;”>• Feeling disconnected from yourself</p>
    <p style=”text-indent: 2em;”>• Depression and anxiety</p>

    which works fine except it increases the leading doubles

    the code from eridout (member)
    <td style=”font-size:125%;line-height:130%;text-align:left;”>
    works but not with the list.

    Can I do both?

    Thanks all you WordPress brainy-aches!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change leading on one page.’ is closed to new replies.