Difficulty changing size of post title, captions, line breaks (Plane Theme)

  • Unknown's avatar

    Hi all,

    CSS novice here. Trying to adjust a number of different elements on my site, but the code, for whatever reason, doesn’t seem to be sticking. In particular, what I’d like to adjust is:

    • Font size on post titles
    • The amount of space between paragraphs (i.e. on carriage returns)
    • The size and font of my picture captions

    I know the individual code elements for these, but it appears there’s something blocking any changes I make and I’m not totally sure how to override it. Can anyone help?

    Thanks!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, since you are using Custom Fonts, we have to use a different CSS selector for the post/page titles.

    .wf-active .site-title, .wf-active .entry-title {
        font-size: 30px;
    }

    For paragraph spacing, add the following and adjust as desired.

    p {
        margin-bottom: 1.8em;
    }

    For captions, add the following and adjust.

    .wp-caption-text {
    font-size: 1.4rem;
    }
  • Unknown's avatar

    Great – thanks so much for your help!

  • Unknown's avatar
  • The topic ‘Difficulty changing size of post title, captions, line breaks (Plane Theme)’ is closed to new replies.