Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #470497

    Hi guys,

    I am trying to re-order my posts so that the image is featured below the post title and author details.

    I’ve followed Peter’s advice in this thread but this has now made the post title and author details left aligned and it has also removed the padding between these details and the image.

    I’m pretty stuck (again), would you be able let me know what I need to do?

    Many thanks

    edney23

    #470868

    Hey edney23!

    use this code in Quick CSS field:

    .entry-content-header {
    text-align: right;
    }
    

    Cheers!
    Andy

    #472289

    Thanks Andy – think my description of the issue was lacking.

    The problem is that the post title plus details are now left aligned to the point where they are no longer in line with the image and over the multi-author column. The title and details also are missing the line break between them and the picture.

    Example attached – no idea how to fix this despite a few hours of trying.

    Could you lend some further help??

    Many thanks

    edney23

    Post Title Issue

    #472801

    Hey!

    That’s weird, not sure why that happened. Please try this in Quick CSS:

    @media only screen and (min-width: 768px) {
    .entry-content-header {
      padding-left: 130px;
      margin-bottom: 10px;
    }
    }

    Best regards,
    Rikard

    #473467

    Thanks Rikard but that doesn’t appear to have worked either…

    Would you be able to suggest something else?

    #473655

    Hi!

    We updated the code above. That should work now.

    Regards,
    Ismael

    #473672

    *Actually* that seems to have worked on the blog page but it has indented the blog widget to the right on the homepage.

    Example 2

    Sorry guys – this seems to be a tricky one!

    • This reply was modified 9 years, 4 months ago by edney23.
    #474022

    Hey edney23!

    It shouldnt be affecting the homepage fed, but you could try assigning the css Rikard provided to the blog page only by using the page id.

    Here’s an example:

    @media only screen and (min-width: 768px) {
    .page-id-731 .entry-content-header {
      padding-left: 130px;
      margin-bottom: 10px;
    }
    }

    Regards,
    Dake

    #474134

    You guys are the bees knees. Thanks a lot that worked!

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Post Title & Image order’ is closed to new replies.