Moving Feature Picture?

  • Unknown's avatar

    Hi there! I am a complete CSS newbie. IE: never have done it before.
    But I want to learn and I want to get more into the blogging world. I have a feature image for my post (using the theme Toujours) but the image goes to the top, above the entry title. I would like to have the image aligned to the left of the title… is that possible?

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

  • Unknown's avatar

    Hi there, that would require custom CSS, which is a feature of the WordPress.com Premium Plan upgrade.

    You can try out and preview custom CSS before you buy as explained here. Here would be some suggested CSS. I’ve used a Media Query to limit this to 600px and wider screens/windows since below that width, the titles get really squished.

    .post .featured-image {
      display: inline-block !important;
      vertical-align: top !important;
      max-width: 200px;
    }
    .post .entry-header {
      margin-left: 20px !important;
      display: inline-block !important;
      width: calc(100% - 230px);
    }
  • The topic ‘Moving Feature Picture?’ is closed to new replies.