Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2451964
Line Spacing (Single Post) and Font Style (Quote and Signup Forms)
Closed

Comments

  • Fadi started the conversation

    Hi,

    1. Is there any custom code to increase line spacing on single post page (for paragraph text only).
    2. I tried to change the font style from Italic to Normal for block-quote and Mailchimp footer signup form's description, but It seems there is no option to do so.

    I am not a developer, but I used to copy some codes from this forum and paste them into Customize>>Custom CSS and that helped.

    Many thanks

  •  2,699
    PenciDesign replied

    Hi,

    1/ Please try add more this code to Customize > Custom CSS to do that:

    .post-entry p{ line-height: 1.9; }

    You can change value 1.9 to 2.0 or 2.1 or 1.8 - as you want.

    2/ Please try add more this code to Customize > Custom CSS to do that:

    .post-entry blockquote, .post-entry blockquote p, 
    .wpb_text_column blockquote, .wpb_text_column blockquote p, .footer-subscribe .mc4wp-form .mdes{ font-style: normal; }

    Best Regards,

    PenciDesign

  • Fadi replied

    Hi,

    Solution #1 worked perfectly with paragraph text, but within a single bullet point still there is no spacing between lines.

  •  2,699
    PenciDesign replied

    Hi,

    If you want to apply the line-height for bullet point, please add more this code to Customize > Custom CSS:

    .post-entry ul li{ line-height: 1.9; }
    

    Best Regards,

    PenciDesign