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

    There’s a similar posting about this, but this code snippet won’t do the trick, neither when I use it in our child theme nor when applied directly to js/avia.js inside the main enfold theme folder:

    jQuery('.page article').each(function(){
    
    jQuery(this).find('.entry-content-header').after(jQuery(this).find('.big-preview').detach());
    
    })

    I’ve verified my js/avia.js and the code is correctly being shown at the end of wp-content/themes/enfold/js/avia.js?ver=1, but the featured image is still on top of everything.

    #216627

    Oh I’d be interested in this, only if you can update in the child theme.

    #216706

    Hey!

    What type of blog do you have right now?

    Regards,
    Ismael

    #216707

    Wordpress.org … is that what you are asking?

    #216825

    Hi!

    I’m talking about the Blog Style that you set on Blog Posts element or on the Enfold > General Settings > Blog Style.

    Cheers!
    Ismael

    #216854

    In mine blog style is set to “Multi Author Blog”.

    #216855

    I just saw the Single Post Style setting, too. But none of the 3 gives the desired result, so I’d really like to float that featured image inside of my article which would require it to be placed after the header section within the HTML source. The CSS part of it I’ll take of by myself.

    #217067

    Ismael:

    Single Author, big preview Pic (no author picture displayed)
    But it’s in a Blog Grid format: http://planningforever.com/blog

    Because I could NEVER get the read more excerpt to work.

    #218464

    Hey @saundra!

    This code will work:

    jQuery(function() {
    jQuery('.slide-entry').each(function(){
    jQuery(this).find('.slide-content .slide-meta').after(jQuery(this).find('.slide-image').detach());
    })
    });

    Best regards,
    Josue

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Move Featured Image Below Content Header’ is closed to new replies.