Push down the side bar in blog

Hey,

How can I make the featured image full width, but the side bar start when the text starts?

Here is an example of my blog here: http://temp.thisadventurelife.com/hiking/day-trip-hiking-above-lake-louise/

Thanks!

Hi There,

  1. Please add the following code under Pro > Theme Options > JS:

jQuery('.single-post .entry-featured').insertBefore(jQuery('.x-main'));

  1. Please also add the following css under Pro > Theme Options > CSS:
.single-post .entry-featured {
    margin-bottom: 25px;
}
.single-post .entry-featured img {
    width: 100%;
}

Hope it helps :slight_smile:

Worked! Thanks :blush: