• Hi,

    I would like to place the featured Image behind my full width content (class=”site-inner) or behind the site-container instead of placing it above the content. How can I change it?

    Thx in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Robin Cornett

    (@littlerchicken)

    Although you can change where the backstretch image is hooked with the display_featured_image_move_backstretch_image filter (default is genesis_after_header), although I think you could accomplish the visual effect with CSS.

    Tinkering with Chrome’s Dev Tools, this seemed to get me started with the kind of thing I’m thinking you might be looking for:

    
    .big-leader {
        position: fixed !important;
        width: 100%;
    }
    
    .has-leader .site-inner {
        position: relative;
    }
    

    If this is a step in the right direction, you can also target pages that are only full width content (Genesis modifies the body class). Hope this helps you get started!

    Thread Starter gineo

    (@gineo)

    Great, Thanks! needs some fine tuning…

    try also to use the filter.

    Thanks for your ultra fast response.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Place Featured Image behind full width content’ is closed to new replies.