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

    Hi. The normal blog post has the featured image on top and then the headline underneath it.
    What would I have t change to flip flop this? The Headline first and then the featured image underneath it.

    Thanks

    #313787

    Hey esemmel!

    Thank you for using Enfold.

    You can refer to this link: https://kriesi.at/support/topic/how-can-i-make-the-post-title-appear-above-the-featured-images-on-the-blog-page/

    Best regards,
    Ismael

    #314028

    Hi. I used the solution of replacing the code in the loop-index.php
    That worked great.

    Then I took your code for shifting over the header and meta info
    header.entry-content-header {
    padding-left: 130px;
    }

    However, this shifts over the title and met info in the Post page and well as the blog page.
    How can I indent the header on meta on the blog page only but leave them where they are on the individual post pages?

    Thanks.

    #314539

    Hey!

    Try pre-fixing the CSS mods by the page ID of the blog page:

    .page-id-xxx .header.entry-content-header {
    padding-left: 130px;
    }

    Best regards,
    Josue

    #314574

    Hi. It seems what I was looking at was the category pages. I will see if it works with the code above using the page id for each category.

    #314595

    Nope. the code doesnt work.

    This code moved the titles over, but not the Meta Info.

    .template-blog header.entry-content-header h2 {
    padding-left: 130px;
    }

    I added code to change the headings on the individual post pages to h1 so this doesnt affect the headings on those pages.

    #316581

    Hi!

    Can we see what you have now on your site live? Customization isn’t in what support covers typically but we try and assist where possible.

    Best regards,
    Devin

    #316645

    HI, here’s a link to a page as an example:

    http://www.artlessonspage.com/blog/

    #317258

    Hey!

    Please use this:

    header.entry-content-header {
    padding-left: 130px;
    }
    
    @media only screen and (max-width: 767px) {
    header.entry-content-header {
    padding-left: 0;
    }
    }
    

    Best regards,
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.