• Resolved btordoff

    (@btordoff)


    Hello,

    I’m a complete noob to the WP and coding community, so take it easy on me.

    I’m looking for a way to change the font size of my posts. I assume I would do this in the “Custom CSS” box. Please let me know if that’s wrong.

    Also, I would like to learn how to wrap “heading text” around an image.

    Any quick code you can post would be much appreciated! Thank you!

    TopRockyVacations.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • You can change the font size of your posts with this custom CSS:

    article.post {
      font-size: 18px;
    }

    As for your second question, can you post a link to a page that shows the heading text and the image in question?

    Thread Starter btordoff

    (@btordoff)

    As you can see, with my “Loveland Ski Area” section, the text is shoved down because of the picture on the right. This is because the text, “Price” is in a header font, so no picture can exist on the same line.

    My question is, how do I alter my code so that any picture can remain on the same line as header text?

    Let me know if this is clear to you.

    https://toprockyvacations.com/ski-resorts-near-denver-2

    Okay, I see. In your theme’s custom CSS area, try this:

    .entry-content h4 {
    display: inline;
    }
    Thread Starter btordoff

    (@btordoff)

    That’s perfect! I’ve been struggling with this for hours. Thanks a lot man.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to Change Post Font Size and Wrapping’ is closed to new replies.