Viewing 8 replies - 1 through 8 (of 8 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have a section of the dashboard named, “Jetpack”, “Custom CSS” or “Custom Styles”?

    Thread Starter wendyhsu

    (@wendyhsu)

    I’m using the one-click-child-theme plugin to customize the CSS. I’m just wondering which line of code I should be looking at to tweak the value of paragraph break.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    The point of a Child Theme is not to edit the theme’s files, so not to tweak the theme’s style.css.

    Instead work in your Child Theme style.css file and create new styles that override old ones;
    E.g;

    .entry-content p {
     margin-bottom: 1em;
    }

    Thread Starter wendyhsu

    (@wendyhsu)

    Right. That’s what I’m trying to do. Is this what I should add to the child theme CSS to override the original CSS in order to change the value of the paragraph break?

    .entry-content p {
     margin-bottom: 1em;
    }
    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Is it the space between each line of text in the paragraph you want increased?

    Thread Starter wendyhsu

    (@wendyhsu)

    Actually, it’s the space between each paragraph.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Then,

    Is this what I should add to the child theme CSS to override the original CSS in order to change the value of the paragraph break?

    Yes, that appears to be the right code. You can replace the number 1 in the code to a value you want. The larger the value, the bigger the gap.

    Thread Starter wendyhsu

    (@wendyhsu)

    Awesome! It’s working the way I want it to now. Thanks so much, Andrew! [tweaking my personal site first: https://69.89.31.173/~beingwen/%5D

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘paragraph break’ is closed to new replies.