• Resolved chazbeck

    (@chazbeck)


    Hi,

    On my list of posts page, if a title is short, the featured image appears next to the title. If the title is long, the featured image appears above the title.

    Is there a way to force the title to always be next to the featured image regardless of how many characters are in the title?

    Additionally, is there CSS which will allow the featured image to overhang the post column?

    Thank you.

    Charlie

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi there!

    You can use the following CSS to force the title and post content on your blog page to always sit next to (or wrap around when it’s longer) the featured image:

    
    .blog .entry-header,
    .blog .entry-content {
       display: inline;
    }

    When you asked about overhanging the post column, did you mean something like what this does?

    a.post-thumbnail {
       margin-left: -100px
    }

    That should shift the image to the left, so it extends beyond where the content column begins. If that’s not what you were thinking, let me know ??

    Thread Starter chazbeck

    (@chazbeck)

    Thank you Chad. That works.

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Image Above Title on Posts Page & Over Hang’ is closed to new replies.